mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +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;
|