1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# Installation
> `npm install --save @types/arr-diff`
# Summary
This package contains type definitions for arr-diff (https://github.com/jonschlinkert/arr-diff).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/arr-diff.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/arr-diff/index.d.ts)
````ts
export = arrDiff;
declare function arrDiff<T>(first: readonly T[], ...args: Array<readonly any[]>): T[];
````
### Additional Details
* Last updated: Mon, 06 Nov 2023 22:41:04 GMT
* Dependencies: none
# Credits
These definitions were written by [BendingBender](https://github.com/BendingBender).
|