UNPKG

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