AdminLTE/plugins/filterizr/utils/merge.d.ts
REJack e3888aee85
created new gallery page
- added filterizr to plugins
- created gallery demo
2019-08-28 11:42:16 +02:00

6 lines
185 B
TypeScript
Executable file

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