general.d.ts 144 B

1234
  1. /**
  2. * Deep clones a object in the most easiest manner.
  3. */
  4. export declare function cloneObject<T extends Record<PropertyKey, any>>(obj: T): T;