UNPKG

642 BTypeScriptView Raw
1/**
2 * Extending object that entered in first argument.
3 *
4 * Returns extended object or false if have no target object or incorrect type.
5 *
6 * If you wish to clone source object (without modify it), just use empty new
7 * object as first argument, like this:
8 * deepExtend({}, yourObj_1, [yourObj_N]);
9 */
10export declare const deepExtend: (...objects: any[]) => any;
11export declare function getDeepFromObject(object: {}, name: string, defaultValue?: any): any;
12export declare function urlBase64Decode(str: string): string;
13export declare function b64decode(str: string): string;
14export declare function b64DecodeUnicode(str: any): string;