404

[ Avaa Bypassed ]




Upload:

Command:

botdev@18.220.118.29: ~ $
import { Subscriber } from '../../Subscriber';
import { AjaxResponse } from './AjaxObservable';

/**
 * @see {@link ajax}
 *
 * @interface
 * @name AjaxRequest
 * @noimport true
 */
export class AjaxRequestDoc {
  /**
   * @type {string}
   */
  url: string = '';
  /**
   * @type {number}
   */
  body: any = 0;
  /**
   * @type {string}
   */
  user: string = '';
  /**
   * @type {boolean}
   */
  async: boolean = false;
  /**
   * @type {string}
   */
  method: string = '';
  /**
   * @type {Object}
   */
  headers: Object = null;
  /**
   * @type {number}
   */
  timeout: number = 0;
  /**
   * @type {string}
   */
  password: string = '';
  /**
   * @type {boolean}
   */
  hasContent: boolean = false;
  /**
   * @type {boolean}
   */
  crossDomain: boolean = false;
  /**
   * @type {boolean}
   */
  withCredentials: boolean = false;
  /**
   * @return {XMLHttpRequest}
   */
  createXHR(): XMLHttpRequest {
    return null;
  }
  /**
   * @type {Subscriber}
   */
  progressSubscriber: Subscriber<any> = null;
  /**
   * @param {AjaxResponse} response
   * @return {T}
   */
  resultSelector<T>(response: AjaxResponse): T {
    return null;
  }
  /**
   * @type {string}
   */
  responseType: string = '';
}

Filemanager

Name Type Size Permission Actions
AjaxObservable.ts File 16.52 KB 0644
MiscJSDoc.ts File 1.19 KB 0644
WebSocketSubject.ts File 11.82 KB 0644
ajax.ts File 2.23 KB 0644
fetch.ts File 5.8 KB 0644
webSocket.ts File 9.92 KB 0644