Onlife/node_modules/ethers/utils/properties.d.ts

11 lines
592 B
TypeScript
Raw Permalink Normal View History

2025-04-19 15:38:48 +08:00
export declare function defineReadOnly(object: any, name: string, value: any): void;
export declare function setType(object: any, type: string): void;
export declare function isType(object: any, type: string): boolean;
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 function inheritable(parent: any): (child: any) => void;