summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/rxjs/src/internal/observable/dom/MiscJSDoc.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/node_modules/rxjs/src/internal/observable/dom/MiscJSDoc.ts')
-rw-r--r--tools/node_modules/eslint/node_modules/rxjs/src/internal/observable/dom/MiscJSDoc.ts77
1 files changed, 0 insertions, 77 deletions
diff --git a/tools/node_modules/eslint/node_modules/rxjs/src/internal/observable/dom/MiscJSDoc.ts b/tools/node_modules/eslint/node_modules/rxjs/src/internal/observable/dom/MiscJSDoc.ts
deleted file mode 100644
index 6fe7e819af..0000000000
--- a/tools/node_modules/eslint/node_modules/rxjs/src/internal/observable/dom/MiscJSDoc.ts
+++ /dev/null
@@ -1,77 +0,0 @@
-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 = '';
-}