1 | # Installation
|
2 | > `npm install --save @types/clone-deep`
|
3 |
|
4 | # Summary
|
5 | This package contains type definitions for clone-deep (https://github.com/jonschlinkert/clone-deep).
|
6 |
|
7 | # Details
|
8 | Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/clone-deep.
|
9 | ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/clone-deep/index.d.ts)
|
10 | ````ts
|
11 | declare function cloneDeep<T>(
|
12 | val: T,
|
13 | instanceClone?: true | ((val: T) => T),
|
14 | ): T;
|
15 |
|
16 | export = cloneDeep;
|
17 |
|
18 | ````
|
19 |
|
20 | ### Additional Details
|
21 | * Last updated: Mon, 06 Nov 2023 22:41:05 GMT
|
22 | * Dependencies: none
|
23 |
|
24 | # Credits
|
25 | These definitions were written by [Tanfonto](https://github.com/tanfonto).
|
26 |
|
\ | No newline at end of file |