fix(core): update

This commit is contained in:
2024-05-17 16:33:49 +02:00
commit 84bb5c8a26
13 changed files with 1932 additions and 0 deletions

3
build/util.d.ts vendored Normal file
View File

@@ -0,0 +1,3 @@
export declare type Constructor = new (...args: any[]) => any;
export declare type Func = (...args: any[]) => any;
export declare const instanceOfAny: (object: any, constructors: Constructor[]) => boolean;