UNPKG

451 BTypeScriptView Raw
1import { IterableX } from '../../iterable/iterablex';
2import { _finally as _finallyProto } from '../../iterable/finally';
3/**
4 * @ignore
5 */
6export declare function finallyProto<TSource>(this: IterableX<TSource>, action: () => void): IterableX<TSource>;
7export declare namespace iterable {
8 let _finally: typeof _finallyProto;
9}
10declare module '../../iterable/iterablex' {
11 interface IterableX<T> {
12 finally: typeof finallyProto;
13 }
14}