ethers.js/packages/properties/index.d.ts
2019-06-11 17:57:04 -04:00

11 lines
433 B
TypeScript

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;
export declare function deepCopy(object: any): any;
export declare class Description {
constructor(info: any);
}