![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/vreg/node_modules/rxjs/src/internal/observable/dom/ |
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 = ''; }