@dasch-swiss/dsp-js
Version:
JavaScript library that handles API requests to Knora
26 lines (25 loc) • 712 B
TypeScript
import { IBaseTextValueAsHtml, IBaseTextValueAsString, IBaseTextValueAsXml } from "../type-specific-interfaces/base-text-value";
import { UpdateValue } from "./update-value";
/**
* @category Model V2
*/
export declare class UpdateTextValueAsString extends UpdateValue implements IBaseTextValueAsString {
text: string;
constructor();
}
/**
* @category Model V2
*/
export declare class UpdateTextValueAsXml extends UpdateValue implements IBaseTextValueAsXml {
xml: string;
mapping: string;
constructor();
}
/**
* @category Model V2
*/
export declare class UpdateTextValueAsHtml extends UpdateValue implements IBaseTextValueAsHtml {
html: string;
xml: string;
constructor();
}