2019-05-15 01:48:48 +03:00
|
|
|
export declare function defineReadOnly(object: any, name: string, value: any): void;
|
|
|
|
export declare function resolveProperties(object: any): Promise<any>;
|
|
|
|
export declare function checkProperties(object: any, properties: {
|
|
|
|
[name: string]: boolean;
|
|
|
|
}): void;
|
|
|
|
export declare function shallowCopy(object: any): any;
|
2019-06-12 00:57:04 +03:00
|
|
|
export declare function deepCopy(object: any): any;
|
2019-05-15 01:48:48 +03:00
|
|
|
export declare class Description {
|
|
|
|
constructor(info: any);
|
|
|
|
}
|