index.d.ts 117 B

123
  1. declare function safeArrayConcat<T = unknown>(item: T | T[], ...items: (T | T[])[]): T[];
  2. export = safeArrayConcat;