array.d.ts 153 B

1234
  1. /**
  2. * Flatten nested arrays (max depth is 2) into a non-nested array of non-array items.
  3. */
  4. export declare function flatten<T>(items: T[][]): T[];