2018-07-24 02:21:42 +03:00
|
|
|
export declare function defineReadOnly(object: any, name: string, value: any): void;
|
2018-07-26 04:20:21 +03:00
|
|
|
export declare function setType(object: any, type: string): void;
|
|
|
|
export declare function isType(object: any, type: string): boolean;
|
2018-07-24 02:21:42 +03:00
|
|
|
export declare function resolveProperties(object: any): Promise<any>;
|
|
|
|
export declare function shallowCopy(object: any): any;
|
2018-08-21 14:13:52 +03:00
|
|
|
export declare function deepCopy(object: any, frozen?: boolean): any;
|
2018-07-31 01:59:52 +03:00
|
|
|
export declare function inheritable(parent: any): (child: any) => void;
|