freddyaboulton's picture
Upload folder using huggingface_hub
0918187 verified
raw
history blame
362 Bytes
import type { FileData } from "@gradio/client";
export interface UploadButtonProps {
value: null | FileData | FileData[];
file_count: string;
file_types: string[];
size: "sm" | "lg";
icon: FileData | null;
variant: "primary" | "secondary" | "stop";
}
export interface UploadButtonEvents {
change: never;
upload: never;
click: never;
error: string;
}