LayoutPainter / src /frontend /shared /AnnotatedImageData.ts
HBDing's picture
upd
4e514a6
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[] = [];
}