Files
docx-js/ts/export/formatter.ts

8 lines
188 B
TypeScript
Raw Normal View History

import { BaseXmlComponent } from "../docx/xml-components";
2016-03-28 00:53:24 +01:00
export class Formatter {
2017-04-15 20:11:54 +01:00
public format(input: BaseXmlComponent): XmlableObject {
2017-03-10 08:23:27 +01:00
return input.prepForXml();
2016-03-28 00:53:24 +01:00
}
}