import { IterableX } from '../../iterable/iterablex'; import { _finally as _finallyProto } from '../../iterable/finally'; /** * @ignore */ export declare function finallyProto(this: IterableX, action: () => void): IterableX; export declare namespace iterable { let _finally: typeof _finallyProto; } declare module '../../iterable/iterablex' { interface IterableX { finally: typeof finallyProto; } }