util.d.ts 206 Bytes Raw Blame History Permalink 1 2 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;