UNPKG

321 BTypeScriptView Raw
1import { AsyncIterableX } from '../../asynciterable/asynciterablex';
2/**
3 * @ignore
4 */
5export declare function endWithProto<T>(this: AsyncIterableX<T>, ...args: T[]): AsyncIterableX<T>;
6declare module '../../asynciterable/asynciterablex' {
7 interface AsyncIterableX<T> {
8 endWith: typeof endWithProto;
9 }
10}