frontend / 5.49.1 /gallery /types.ts
gradio-pr-bot's picture
Upload folder using huggingface_hub
383a96f verified
raw
history blame contribute delete
204 Bytes
import type { FileData } from "@gradio/client";
export interface GalleryImage {
image: FileData;
caption: string | null;
}
export interface GalleryVideo {
video: FileData;
caption: string | null;
}