import type {IntoInterator} from './types'; // Requires a resolution of https://github.com/microsoft/TypeScript/issues/1213 // export default function takeInto, T>(ArrayClass: new (n: number) => C, iterator: Iterator, n: number): C; export default function takeInto( ArrayClass: new (arrayLength: number) => T[], iterator: IntoInterator, n: number ): T[];