UNPKG

@openxmldev/linq-to-xml

Version:
15 lines (14 loc) 294 B
/** * @author Thomas Barnekow * @license MIT */ import { XNode } from './internal.js'; /** * Represents a text node. */ export declare class XText extends XNode { constructor(value: string); get value(): string; set value(text: string); toString(): string; }