@nebular/auth
Version:
@nebular/auth
15 lines (14 loc) • 642 B
TypeScript
/**
* Extending object that entered in first argument.
*
* Returns extended object or false if have no target object or incorrect type.
*
* If you wish to clone source object (without modify it), just use empty new
* object as first argument, like this:
* deepExtend({}, yourObj_1, [yourObj_N]);
*/
export declare const deepExtend: (...objects: any[]) => any;
export declare function getDeepFromObject(object: {}, name: string, defaultValue?: any): any;
export declare function urlBase64Decode(str: string): string;
export declare function b64decode(str: string): string;
export declare function b64DecodeUnicode(str: any): string;