UNPKG

@dasch-swiss/dsp-js

Version:

JavaScript library that handles API requests to Knora

23 lines (22 loc) 596 B
import { StringLiteralV2 } from "../string-literal-v2"; import { PropertyDefinition } from "./property-definition"; /** * @category Model V2 */ export declare class SystemPropertyDefinition extends PropertyDefinition { id: string; subPropertyOf: string[]; comment?: string; label?: string; subjectType?: string; objectType?: string; } /** * @category Model V2 */ export declare class SystemPropertyDefinitionWithAllLanguages extends SystemPropertyDefinition { comment?: string; comments: StringLiteralV2[]; label?: string; labels: StringLiteralV2[]; }