mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 02:29:30 +08:00
3 lines
206 B
Text
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;
|