mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-21 17:20:32 +08:00
9 lines
296 B
TypeScript
9 lines
296 B
TypeScript
// Type definitions for arr-union 3.1
|
|
// Project: https://github.com/jonschlinkert/arr-union
|
|
// Definitions by: mrmlnc <https://github.com/mrmlnc>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function union<T>(...arrays: Array<ArrayLike<T>>): T[];
|
|
|
|
export = union;
|