put()

in src/httpPostMessage.ts [75:82]


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