2
0
mirror of synced 2025-02-24 12:08:10 +00:00
2019-05-14 18:48:48 -04:00

13 lines
584 B
TypeScript

export declare function defineReadOnly(object: any, name: string, value: any): void;
export declare function isNamedInstance<T>(type: Function | string, value: any): value is T;
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;
export declare function deepCopy(object: any, frozen?: boolean): any;
export declare class Description {
constructor(info: any);
static isType(value: any): boolean;
}