UNPKG

data-forge

Version:

JavaScript data transformation and analysis toolkit inspired by Pandas and LINQ.

7 lines (6 loc) 233 B
export declare class TakeIterable<T> implements Iterable<T> { childIterable: Iterable<T>; numElements: number; constructor(childIterable: Iterable<T>, numElements: number); [Symbol.iterator](): Iterator<any>; }