DefinitelyTyped/types/arr-diff/index.d.ts
2018-12-31 08:11:35 -08:00

9 lines
310 B
TypeScript

// Type definitions for arr-diff 4.0
// Project: https://github.com/jonschlinkert/arr-diff
// Definitions by: BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export = arrDiff;
declare function arrDiff<T>(first: T[], ...args: any[][]): T[];