Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.14.152.212
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
rxjs /
observable /
dom /
Delete
Unzip
Name
Size
Permission
Date
Action
AjaxObservable.d.ts
5.05
KB
-rw-rw-r--
2022-08-30 11:49
AjaxObservable.js
15.93
KB
-rw-rw-r--
2022-08-30 11:49
AjaxObservable.js.map
27.72
KB
-rw-rw-r--
2022-08-30 11:49
WebSocketSubject.d.ts
3.04
KB
-rw-rw-r--
2022-08-30 11:49
WebSocketSubject.js
9.21
KB
-rw-rw-r--
2022-08-30 11:49
WebSocketSubject.js.map
14.99
KB
-rw-rw-r--
2022-08-30 11:49
ajax.d.ts
102
B
-rw-rw-r--
2022-08-30 11:49
ajax.js
153
B
-rw-rw-r--
2022-08-30 11:49
ajax.js.map
348
B
-rw-rw-r--
2022-08-30 11:49
webSocket.d.ts
119
B
-rw-rw-r--
2022-08-30 11:49
webSocket.js
171
B
-rw-rw-r--
2022-08-30 11:49
webSocket.js.map
330
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
import { Observable } from '../../Observable'; import { Subscriber } from '../../Subscriber'; import { TeardownLogic } from '../../Subscription'; export interface AjaxRequest { url?: string; body?: any; user?: string; async?: boolean; method?: string; headers?: Object; timeout?: number; password?: string; hasContent?: boolean; crossDomain?: boolean; withCredentials?: boolean; createXHR?: () => XMLHttpRequest; progressSubscriber?: Subscriber<any>; responseType?: string; } export interface AjaxCreationMethod { (urlOrRequest: string | AjaxRequest): Observable<AjaxResponse>; get(url: string, headers?: Object): Observable<AjaxResponse>; post(url: string, body?: any, headers?: Object): Observable<AjaxResponse>; put(url: string, body?: any, headers?: Object): Observable<AjaxResponse>; patch(url: string, body?: any, headers?: Object): Observable<AjaxResponse>; delete(url: string, headers?: Object): Observable<AjaxResponse>; getJSON<T>(url: string, headers?: Object): Observable<T>; } export declare function ajaxGet(url: string, headers?: Object): AjaxObservable<AjaxResponse>; export declare function ajaxPost(url: string, body?: any, headers?: Object): Observable<AjaxResponse>; export declare function ajaxDelete(url: string, headers?: Object): Observable<AjaxResponse>; export declare function ajaxPut(url: string, body?: any, headers?: Object): Observable<AjaxResponse>; export declare function ajaxPatch(url: string, body?: any, headers?: Object): Observable<AjaxResponse>; export declare function ajaxGetJSON<T>(url: string, headers?: Object): Observable<T>; /** * We need this JSDoc comment for affecting ESDoc. * @extends {Ignored} * @hide true */ export declare class AjaxObservable<T> extends Observable<T> { /** * Creates an observable for an Ajax request with either a request object with * url, headers, etc or a string for a URL. * * @example * source = Rx.Observable.ajax('/products'); * source = Rx.Observable.ajax({ url: 'products', method: 'GET' }); * * @param {string|Object} request Can be one of the following: * A string of the URL to make the Ajax call. * An object with the following properties * - url: URL of the request * - body: The body of the request * - method: Method of the request, such as GET, POST, PUT, PATCH, DELETE * - async: Whether the request is async * - headers: Optional headers * - crossDomain: true if a cross domain request, else false * - createXHR: a function to override if you need to use an alternate * XMLHttpRequest implementation. * - resultSelector: a function to use to alter the output value type of * the Observable. Gets {@link AjaxResponse} as an argument. * @return {Observable} An observable sequence containing the XMLHttpRequest. * @static true * @name ajax * @owner Observable */ static create: AjaxCreationMethod; private request; constructor(urlOrRequest: string | AjaxRequest); /** @deprecated internal use only */ _subscribe(subscriber: Subscriber<T>): TeardownLogic; } /** * We need this JSDoc comment for affecting ESDoc. * @ignore * @extends {Ignored} */ export declare class AjaxSubscriber<T> extends Subscriber<Event> { request: AjaxRequest; private xhr; private done; constructor(destination: Subscriber<T>, request: AjaxRequest); next(e: Event): void; private send(); private serializeBody(body, contentType?); private setHeaders(xhr, headers); private setupEvents(xhr, request); unsubscribe(): void; } /** * A normalized AJAX response. * * @see {@link ajax} * * @class AjaxResponse */ export declare class AjaxResponse { originalEvent: Event; xhr: XMLHttpRequest; request: AjaxRequest; /** @type {number} The HTTP status code */ status: number; /** @type {string|ArrayBuffer|Document|object|any} The response data */ response: any; /** @type {string} The raw responseText */ responseText: string; /** @type {string} The responseType (e.g. 'json', 'arraybuffer', or 'xml') */ responseType: string; constructor(originalEvent: Event, xhr: XMLHttpRequest, request: AjaxRequest); } /** * A normalized AJAX error. * * @see {@link ajax} * * @class AjaxError */ export declare class AjaxError extends Error { /** @type {XMLHttpRequest} The XHR instance associated with the error */ xhr: XMLHttpRequest; /** @type {AjaxRequest} The AjaxRequest associated with the error */ request: AjaxRequest; /** @type {number} The HTTP status code */ status: number; /** @type {string} The responseType (e.g. 'json', 'arraybuffer', or 'xml') */ responseType: string; /** @type {string|ArrayBuffer|Document|object|any} The response data */ response: any; constructor(message: string, xhr: XMLHttpRequest, request: AjaxRequest); } /** * @see {@link ajax} * * @class AjaxTimeoutError */ export declare class AjaxTimeoutError extends AjaxError { constructor(xhr: XMLHttpRequest, request: AjaxRequest); }