vue-snotify
Version:
A Vue.js toast notifications
18 lines (17 loc) • 385 B
TypeScript
/**
* Generates random id
* @return {number}
*/
export declare function uuid(): number;
/**
* Simple is object check.
* @param item {Object<any>}
* @returns {boolean}
*/
export declare function isObject(item: any): boolean;
/**
* Deep merge objects.
* @param sources {Array<Object<any>>}
* @returns {Object<any>}
*/
export declare function mergeDeep(...sources: any[]): {};