aboutsummaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/rxjs/internal/operators/takeLast.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/node_modules/rxjs/internal/operators/takeLast.d.ts')
-rw-r--r--tools/node_modules/eslint/node_modules/rxjs/internal/operators/takeLast.d.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/node_modules/eslint/node_modules/rxjs/internal/operators/takeLast.d.ts b/tools/node_modules/eslint/node_modules/rxjs/internal/operators/takeLast.d.ts
index e51cea84a9..a5ab26717c 100644
--- a/tools/node_modules/eslint/node_modules/rxjs/internal/operators/takeLast.d.ts
+++ b/tools/node_modules/eslint/node_modules/rxjs/internal/operators/takeLast.d.ts
@@ -18,6 +18,9 @@ import { MonoTypeOperatorFunction } from '../types';
* ## Example
* Take the last 3 values of an Observable with many values
* ```javascript
+ * import { range } from 'rxjs';
+ * import { takeLast } from 'rxjs/operators';
+ *
* const many = range(1, 100);
* const lastThree = many.pipe(takeLast(3));
* lastThree.subscribe(x => console.log(x));