edgargg's picture
Upload folder using huggingface_hub
29580f3 verified
raw
history blame
162 Bytes
import type { FileData } from "@gradio/client";
import Box from "./Box";
export default class AnnotatedImageData {
image: FileData;
boxes: Box[] = [];
}