2017-03-09 20:49:14 +01:00
|
|
|
import { BaseXmlComponent } from "../docx/xml-components";
|
2017-07-08 20:45:19 +01:00
|
|
|
import { IXmlableObject } from "../docx/xml-components/xmlable-object";
|
2016-03-28 00:53:24 +01:00
|
|
|
|
|
|
|
export class Formatter {
|
2017-07-08 20:45:19 +01:00
|
|
|
public format(input: BaseXmlComponent): IXmlableObject {
|
2017-03-10 08:23:27 +01:00
|
|
|
return input.prepForXml();
|
2016-03-28 00:53:24 +01:00
|
|
|
}
|
2017-03-09 20:49:14 +01:00
|
|
|
}
|