UNPKG

@knora/api

Version:

JavaScript library that handles API requests to Knora

15 lines (14 loc) 610 B
import { IBaseTextValueAsHtml, IBaseTextValueAsString, IBaseTextValueAsXml } from "../type-specific-interfaces/base-text-value"; import { ReadValue } from "./read-value"; export declare abstract class ReadTextValue extends ReadValue { } export declare class ReadTextValueAsString extends ReadTextValue implements IBaseTextValueAsString { text: string; } export declare class ReadTextValueAsXml extends ReadTextValue implements IBaseTextValueAsXml { xml: string; mapping: string; } export declare class ReadTextValueAsHtml extends ReadTextValue implements IBaseTextValueAsHtml { html: string; }