type ArrayLike = { length: number; }; /** * converts values that are iterable to an array * @example * toArray('hello') * // returns ['h', 'e', 'l', 'l', 'o'] */ export default function toArray(arrayLike: ArrayLike): T[]; export {}; //# sourceMappingURL=toArray.d.ts.map