Spaces:
Running
Running
File size: 162 Bytes
4e514a6 |
1 2 3 4 5 6 7 8 |
import type { FileData } from "@gradio/client";
import Box from "./Box";
export default class AnnotatedImageData {
image: FileData;
boxes: Box[] = [];
}
|