UNPKG

cvat-sdk

Version:

CVAT SDK is a Javascript library. It provides you access to Javascript functions and objects that simplify server interaction and provide additional functionality like data validation and serialization.

10 lines (9 loc) 250 B
import type { AttributeVal } from './attribute-val'; export interface LabeledImage { 'id'?: number | null; 'frame': number; 'label_id': number; 'group'?: number | null; 'source'?: string; 'attributes'?: Array<AttributeVal>; }