objects.d.ts 302 B

1234567
  1. /**
  2. * Deep merge two objects.
  3. * @param destination - The destination object.
  4. * @param sources - An array of source objects.
  5. * @returns - The merged object.
  6. */
  7. export declare const mergeDeep: (destination: Record<string, unknown>, ...sources: Record<string, unknown>[]) => Record<string, unknown>;