UNPKG

276 BTypeScriptView Raw
1import { IterableX } from '../../iterable/iterablex';
2/**
3 * @ignore
4 */
5export declare function toArrayProto<TSource>(this: IterableX<TSource>): TSource[];
6declare module '../../iterable/iterablex' {
7 interface IterableX<T> {
8 toArray: typeof toArrayProto;
9 }
10}