mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-27 11:12:45 +00:00
11 lines
343 B
TypeScript
11 lines
343 B
TypeScript
// Type definitions for clone-deep 4.0
|
|
// Project: https://github.com/jonschlinkert/clone-deep
|
|
// Definitions by: Tanfonto <https://github.com/tanfonto>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.7
|
|
|
|
export default function cloneDeep<T>(
|
|
val: T,
|
|
instanceClone?: true | ((val: T) => T)
|
|
): T;
|