test / src /frontend /shared /AnnotatedImageData.ts
Longxiang-ai's picture
upd
e2db20d
raw
history blame contribute delete
162 Bytes
import type { FileData } from "@gradio/client";
import Box from "./Box";
export default class AnnotatedImageData {
image: FileData;
boxes: Box[] = [];
}