basant307/AI_Governance_Project
045
1import type {IntoInterator} from './types';2 3// Requires a resolution of https://github.com/microsoft/TypeScript/issues/12134// export default function takeInto<C<~>, T>(ArrayClass: new <T>(n: number) => C<T>, iterator: Iterator<T>, n: number): C<T>;5export default function takeInto<T>(6 ArrayClass: new <T>(arrayLength: number) => T[],7 iterator: IntoInterator<T>,8 n: number9): T[];10 