docx
Version:
Generate .docx documents with JavaScript (formerly Office-Clippy)
14 lines (11 loc) • 366 B
text/typescript
import { BaseXmlComponent, IXmlableObject } from "file/xml-components";
export class Formatter {
public format(input: BaseXmlComponent): IXmlableObject {
const output = input.prepForXml();
if (output) {
return output;
} else {
throw Error("XMLComponent did not format correctly");
}
}
}