UNPKG

wallee

Version:
52 lines (51 loc) 1.15 kB
import { LabelDescriptorCategory } from "./LabelDescriptorCategory"; declare class LabelDescriptor { /** * The label's category. */ 'category'?: LabelDescriptorCategory; /** * The localized description of the object. */ 'description'?: { [key: string]: string; }; /** * The features that this label belongs to. */ 'features'?: Array<number>; /** * The group that this label belongs to. */ 'group'?: number; /** * A unique identifier for the object. */ 'id'?: number; /** * The localized name of the object. */ 'name'?: { [key: string]: string; }; /** * The type of the label's value. */ 'type'?: number; /** * When listing labels, they can be sorted by this number. */ 'weight'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { LabelDescriptor };