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

8 lines
202 B
TypeScript
Raw Normal View History

2018-02-02 01:56:08 +00:00
import { BaseXmlComponent, IXmlableObject } from "file/xml-components";
2016-03-28 00:53:24 +01:00
export class Formatter {
public format(input: BaseXmlComponent): IXmlableObject {
2017-03-10 08:23:27 +01:00
return input.prepForXml();
2016-03-28 00:53:24 +01:00
}
}