UNPKG

docx

Version:

Generate .docx documents with JavaScript (formerly Office-Clippy)

9 lines (8 loc) 304 B
import { IXmlableObject } from "./xmlable-object"; export declare abstract class BaseXmlComponent { protected readonly rootKey: string; protected deleted: boolean; constructor(rootKey: string); abstract prepForXml(): IXmlableObject | undefined; readonly IsDeleted: boolean; }