UNPKG

@nile-ui/nile-ui

Version:

Modern and beautiful looking component designs

13 lines (12 loc) 296 B
/** * Simple object check. * @param item * @returns {boolean} */ export declare function isObject(item: any): any; /** * Deep merge two objects. * @param target * @param ...sources */ export declare function mergeDeep(target: Record<string, any>, ...sources: Record<string, any>[]): any;