mikx1's picture
Upload folder using huggingface_hub
b5ea024
raw
history blame
223 Bytes
type Options = {
cwd?: string;
dot?: boolean;
absolute?: boolean;
filesOnly?: boolean;
flush?: boolean;
};
type FilePath = string;
declare function glob(str: string, opts?: Options): FilePath[];
export = glob;