Urara-Blog/node_modules/.pnpm-store/v3/files/89/3f6849e0432516a38d20ab29fed88ed1387b9a4c64247284ca1c3c12e0875bc625dec7d6ea53d1361de30be9d1f46709a103b23177b3d25b759af54075d92a
2022-08-14 01:14:53 +08:00

3 lines
206 B
Text

export declare type Constructor = new (...args: any[]) => any;
export declare type Func = (...args: any[]) => any;
export declare const instanceOfAny: (object: any, constructors: Constructor[]) => boolean;