uni-ticket-system/node_modules/licia/mergeArr.d.ts

7 lines
129 B
TypeScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
declare function mergeArr<T, U>(
first: ArrayLike<T>,
...arrays: ArrayLike<U>[]
): ArrayLike<T | U>;
export = mergeArr;