DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
206 Bytes
export declare type Constructor = new (...args: any[]) => any;
export declare type Func = (...args: any[]) => any;
export declare const instanceOfAny: (object: any, constructors: Constructor[]) => boolean;