HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/bomacon.komma.pro/node_modules/rxjs/src/observable/dom/MiscJSDoc.ts
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;
  /**
   * @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 = '';
}