7 lines
133 B
TypeScript
7 lines
133 B
TypeScript
import type {IntoInterator} from './types';
|
|
|
|
export default function take<T>(
|
|
iterator: IntoInterator<T>,
|
|
n: number
|
|
): Array<T>;
|