aboutsummaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/timeoutWith.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/timeoutWith.ts')
-rw-r--r--tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/timeoutWith.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/timeoutWith.ts b/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/timeoutWith.ts
index 4399ba562c..6e4a3c5c53 100644
--- a/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/timeoutWith.ts
+++ b/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/timeoutWith.ts
@@ -40,6 +40,9 @@ export function timeoutWith<T, R>(due: number | Date, withObservable: Observable
* ## Example
* Add fallback observable
* ```javascript
+ * import { intrerval } from 'rxjs';
+ * import { timeoutWith } from 'rxjs/operators';
+ *
* const seconds = interval(1000);
* const minutes = interval(60 * 1000);
*