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.

9 lines (8 loc) 270 B
import type { AnnotationIdTypeEnum } from './annotation-id-type-enum'; import type { ShapeType } from './shape-type'; export interface AnnotationId { 'obj_id'?: number; 'job_id'?: number; 'type'?: AnnotationIdTypeEnum; 'shape_type'?: ShapeType | null; }