UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 276 B
import { IterableX } from '../../iterable/iterablex'; /** * @ignore */ export declare function toArrayProto<TSource>(this: IterableX<TSource>): TSource[]; declare module '../../iterable/iterablex' { interface IterableX<T> { toArray: typeof toArrayProto; } }