chunk.d.ts 82 B

123
  1. declare function chunk(arr: any[], size?: number): Array<any[]>;
  2. export = chunk;