mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
328 B
TypeScript
11 lines
328 B
TypeScript
// Type definitions for chunk 0.0
|
|
// Project: https://github.com/ryancole/chunk
|
|
// Definitions by: Florian Keller <https://github.com/ffflorian>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export as namespace chunk;
|
|
|
|
declare function chunk<T>(array: ArrayLike<T>, size?: number): T[][];
|
|
|
|
export = chunk;
|