docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
13 lines (12 loc) • 427 B
TypeScript
import { IViewWrapper } from "../document-wrapper";
import { File } from "../file";
import { IXmlableObject } from "./xmlable-object";
export interface IContext {
readonly file: File;
readonly viewWrapper: IViewWrapper;
}
export declare abstract class BaseXmlComponent {
protected readonly rootKey: string;
constructor(rootKey: string);
abstract prepForXml(context: IContext): IXmlableObject | undefined;
}