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[] = [];
}