docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
15 lines (12 loc) • 472 B
text/typescript
import { BaseXmlComponent, IContext, IXmlableObject } from "file/xml-components";
export class Formatter {
// tslint:disable-next-line: no-object-literal-type-assertion
public format(input: BaseXmlComponent, context: IContext = {} as IContext): IXmlableObject {
const output = input.prepForXml(context);
if (output) {
return output;
} else {
throw Error("XMLComponent did not format correctly");
}
}
}