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.

11 lines (10 loc) 289 B
import type { SublabelMappingEntryRequest } from './sublabel-mapping-entry-request'; export interface LabelMappingEntryRequest { 'name': string; 'attributes'?: { [key: string]: string; }; 'sublabels'?: { [key: string]: SublabelMappingEntryRequest; }; }