UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 320 B
import { AsyncIterableX } from '../../asynciterable/asynciterablex'; /** * @ignore */ export declare function toArrayProto<TSource>(this: AsyncIterableX<TSource>): Promise<TSource[]>; declare module '../../asynciterable/asynciterablex' { interface AsyncIterableX<T> { toArray: typeof toArrayProto; } }