UNPKG

206 BTypeScriptView Raw
1export declare type Constructor = new (...args: any[]) => any;
2export declare type Func = (...args: any[]) => any;
3export declare const instanceOfAny: (object: any, constructors: Constructor[]) => boolean;