HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1784574/cwd/node_modules/pusher-js/src/core/http/
Upload File :
Current File : //proc/1784574/cwd/node_modules/pusher-js/src/core/http/ajax.ts
interface Ajax {
  open(
    method: string,
    url: string,
    async?: boolean,
    user?: string,
    password?: string
  ): void;
  send(payload?: any): void;
  setRequestHeader(key: string, value: string): void;
  onreadystatechange: Function;
  readyState: number;
  responseText: string;
  status: number;
  withCredentials?: boolean;

  ontimeout: Function;
  onerror: Function;
  onprogress: Function;
  onload: Function;
  abort: Function;
}

export default Ajax;