UNPKG

@dasch-swiss/dsp-js

Version:

JavaScript library that handles API requests to Knora

22 lines (21 loc) 580 B
import { StringLiteralV2 } from "../string-literal-v2"; import { ClassDefinition, IHasProperty } from "./class-definition"; /** * @category Model V2 */ export declare class StandoffClassDefinition extends ClassDefinition { id: string; subClassOf: string[]; comment?: string; label?: string; propertiesList: IHasProperty[]; } /** * @category Model V2 */ export declare class StandoffClassDefinitionWithAllLanguages extends StandoffClassDefinition { comment?: string; comments: StringLiteralV2[]; label?: string; labels: StringLiteralV2[]; }