UNPKG

@openxmldev/linq-to-xml

Version:
12 lines (11 loc) 272 B
/** * @author Thomas Barnekow * @license MIT */ import { XNode } from './internal.js'; export declare class XProcessingInstruction extends XNode { target: string; data: string; constructor(target: string, data: string); toString(): string; }