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

8 lines
176 B
TypeScript
Raw Normal View History

import { BaseXmlComponent } from "../docx/xml-components";
2016-03-28 00:53:24 +01:00
export class Formatter {
public format(input: BaseXmlComponent): Object {
return input.toXml();
2016-03-28 00:53:24 +01:00
}
}