summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/rxjs/internal/operators/finalize.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/node_modules/rxjs/internal/operators/finalize.d.ts')
-rw-r--r--tools/node_modules/eslint/node_modules/rxjs/internal/operators/finalize.d.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/tools/node_modules/eslint/node_modules/rxjs/internal/operators/finalize.d.ts b/tools/node_modules/eslint/node_modules/rxjs/internal/operators/finalize.d.ts
deleted file mode 100644
index 0dcc0f597d..0000000000
--- a/tools/node_modules/eslint/node_modules/rxjs/internal/operators/finalize.d.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import { MonoTypeOperatorFunction } from '../types';
-/**
- * Returns an Observable that mirrors the source Observable, but will call a specified function when
- * the source terminates on complete or error.
- * @param {function} callback Function to be called when source terminates.
- * @return {Observable} An Observable that mirrors the source, but will call the specified function on termination.
- * @method finally
- * @owner Observable
- */
-export declare function finalize<T>(callback: () => void): MonoTypeOperatorFunction<T>;