UNPKG

333 BTypeScriptView Raw
1// Type definitions for arr-diff 4.0
2// Project: https://github.com/jonschlinkert/arr-diff
3// Definitions by: BendingBender <https://github.com/BendingBender>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6export = arrDiff;
7
8declare function arrDiff<T>(first: readonly T[], ...args: Array<readonly any[]>): T[];