ix
Version:
The Interactive Extensions for JavaScript
12 lines (11 loc) • 423 B
TypeScript
import { AsyncIterableX } from '../../asynciterable/asynciterablex.js';
import { StartWithAsyncIterable } from '../../asynciterable/operators/startwith.js';
/**
* @ignore
*/
export declare function startWithProto<T>(this: AsyncIterableX<T>, ...args: T[]): StartWithAsyncIterable<T>;
declare module '../../asynciterable/asynciterablex' {
interface AsyncIterableX<T> {
startWith: typeof startWithProto;
}
}