Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

array.d.ts 153B

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[];