UNPKG

@knora/api

Version:

JavaScript library that handles API requests to Knora

12 lines (11 loc) 447 B
import { IBaseTextValueAsString, IBaseTextValueAsXml } from "../type-specific-interfaces/base-text-value"; import { UpdateValue } from "./update-value"; export declare class UpdateTextValueAsString extends UpdateValue implements IBaseTextValueAsString { text: string; constructor(); } export declare class UpdateTextValueAsXml extends UpdateValue implements IBaseTextValueAsXml { xml: string; mapping: string; constructor(); }