DefinitelyTyped/types/arr-union/index.d.ts
2017-11-12 11:54:03 +03:00

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;