post()

in src/httpPostMessage.ts [66:73]


  post<T>(url: string, body: any, headers: any = {}, targetWindow: Window = this.defaultTargetWindow) {
    return this.send<T>({
      method: "POST",
      url,
      headers,
      body
    }, targetWindow);
  }