summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/rxjs/internal/operators/retry.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/node_modules/rxjs/internal/operators/retry.d.ts')
-rw-r--r--tools/node_modules/eslint/node_modules/rxjs/internal/operators/retry.d.ts18
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/node_modules/eslint/node_modules/rxjs/internal/operators/retry.d.ts b/tools/node_modules/eslint/node_modules/rxjs/internal/operators/retry.d.ts
deleted file mode 100644
index afdd6eb0c5..0000000000
--- a/tools/node_modules/eslint/node_modules/rxjs/internal/operators/retry.d.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-import { MonoTypeOperatorFunction } from '../types';
-/**
- * Returns an Observable that mirrors the source Observable with the exception of an `error`. If the source Observable
- * calls `error`, this method will resubscribe to the source Observable for a maximum of `count` resubscriptions (given
- * as a number parameter) rather than propagating the `error` call.
- *
- * ![](retry.png)
- *
- * Any and all items emitted by the source Observable will be emitted by the resulting Observable, even those emitted
- * during failed subscriptions. For example, if an Observable fails at first but emits [1, 2] then succeeds the second
- * time and emits: [1, 2, 3, 4, 5] then the complete stream of emissions and notifications
- * would be: [1, 2, 1, 2, 3, 4, 5, `complete`].
- * @param {number} count - Number of retry attempts before failing.
- * @return {Observable} The source Observable modified with the retry logic.
- * @method retry
- * @owner Observable
- */
-export declare function retry<T>(count?: number): MonoTypeOperatorFunction<T>;