UNPKG

357 BTypeScriptView Raw
1// Type definitions for clone-deep 4.0
2// Project: https://github.com/jonschlinkert/clone-deep
3// Definitions by: Tanfonto <https://github.com/tanfonto>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5// TypeScript Version: 2.7
6
7declare function cloneDeep<T>(
8 val: T,
9 instanceClone?: true | ((val: T) => T)
10): T;
11
12export = cloneDeep;