aboutsummaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/rxjs/internal/operators/windowToggle.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/node_modules/rxjs/internal/operators/windowToggle.d.ts')
-rw-r--r--tools/node_modules/eslint/node_modules/rxjs/internal/operators/windowToggle.d.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/node_modules/eslint/node_modules/rxjs/internal/operators/windowToggle.d.ts b/tools/node_modules/eslint/node_modules/rxjs/internal/operators/windowToggle.d.ts
index 314f524adf..93a611b766 100644
--- a/tools/node_modules/eslint/node_modules/rxjs/internal/operators/windowToggle.d.ts
+++ b/tools/node_modules/eslint/node_modules/rxjs/internal/operators/windowToggle.d.ts
@@ -19,6 +19,9 @@ import { OperatorFunction } from '../types';
* ## Example
* Every other second, emit the click events from the next 500ms
* ```javascript
+ * import { fromEvent, interval } from 'rxjs';
+ * import { windowToggle, mergeAll } from 'rxjs/operators';
+ *
* const clicks = fromEvent(document, 'click');
* const openings = interval(1000);
* const result = clicks.pipe(