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.

14 lines (13 loc) 415 B
export declare const LabelType: { readonly Any: "any"; readonly Cuboid: "cuboid"; readonly Ellipse: "ellipse"; readonly Mask: "mask"; readonly Points: "points"; readonly Polygon: "polygon"; readonly Polyline: "polyline"; readonly Rectangle: "rectangle"; readonly Skeleton: "skeleton"; readonly Tag: "tag"; }; export type LabelType = typeof LabelType[keyof typeof LabelType];