codetrix
Version:
A lightweight lodash-style utility library
12 lines (11 loc) • 313 B
TypeScript
/**
* Creates a deep clone of a value (supports arrays and objects).
*
* @param value - The value to clone.
* @returns A deep cloned copy of the input value.
*
* @example
* const original = { a: 1, b: { c: 2 } };
* const clone = deepClone(original);
*/
export declare function deepClone<T>(value: T): T;