UNPKG

293 BTypeScriptView Raw
1import { IterableX } from './iterablex';
2export declare function as(source: string): IterableX<string>;
3export declare function as<T>(source: Iterable<T>): IterableX<T>;
4export declare function as<T>(source: ArrayLike<T>): IterableX<T>;
5export declare function as<T>(source: T): IterableX<T>;