ethers.js/packages/properties/lib.esm/index.d.ts

12 lines
498 B
TypeScript
Raw Normal View History

2019-05-15 01:48:48 +03:00
export declare function defineReadOnly(object: any, name: string, value: any): void;
2019-06-12 08:01:04 +03:00
export declare function getStatic<T>(ctor: any, key: string): T;
2019-05-15 01:48:48 +03:00
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);
}