2018-07-23 19:21:42 -04:00
|
|
|
export declare function defineReadOnly(object: any, name: string, value: any): void;
|
2018-07-25 21:20:21 -04:00
|
|
|
export declare function setType(object: any, type: string): void;
|
|
|
|
export declare function isType(object: any, type: string): boolean;
|
2018-07-23 19:21:42 -04:00
|
|
|
export declare function resolveProperties(object: any): Promise<any>;
|
2018-10-14 19:05:38 -04:00
|
|
|
export declare function checkProperties(object: any, properties: {
|
|
|
|
[name: string]: boolean;
|
|
|
|
}): void;
|
2018-07-23 19:21:42 -04:00
|
|
|
export declare function shallowCopy(object: any): any;
|
2018-08-21 13:13:52 +02:00
|
|
|
export declare function deepCopy(object: any, frozen?: boolean): any;
|
2018-07-30 18:59:52 -04:00
|
|
|
export declare function inheritable(parent: any): (child: any) => void;
|