UNPKG

@dasch-swiss/dsp-js

Version:

JavaScript library that handles API requests to Knora

16 lines (15 loc) 270 B
/** * A string with an optional language tag. * * @category Model V2 */ export declare class StringLiteralV2 { /** * The language of a string literal. */ language?: string; /** * The value of a string literal. */ value: string; }