merge.d.ts 185 B

12345
  1. import { Dictionary } from '../types/interfaces/Dictionary';
  2. /**
  3. * Deep merge two objects.
  4. */
  5. export declare function merge(target: Dictionary, ...sources: Dictionary[]): Dictionary;