summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/throttleTime.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/throttleTime.ts')
-rw-r--r--tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/throttleTime.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/throttleTime.ts b/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/throttleTime.ts
index 73a03007de..b5da87585c 100644
--- a/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/throttleTime.ts
+++ b/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/throttleTime.ts
@@ -27,6 +27,9 @@ import { MonoTypeOperatorFunction, SchedulerLike, TeardownLogic } from '../types
* ## Example
* Emit clicks at a rate of at most one click per second
* ```javascript
+ * import { fromEvent } from 'rxjs';
+ * import { throttleTime } from 'rxjs/operators';
+ *
* const clicks = fromEvent(document, 'click');
* const result = clicks.pipe(throttleTime(1000));
* result.subscribe(x => console.log(x));