rename toXml -> prepForXml

This commit is contained in:
felipe
2017-03-10 08:23:27 +01:00
parent 50ca71087e
commit c521d0ce63
4 changed files with 8 additions and 11 deletions

View File

@ -2,6 +2,6 @@ import { BaseXmlComponent } from "../docx/xml-components";
export class Formatter {
public format(input: BaseXmlComponent): any {
return input.toXml();
return input.prepForXml();
}
}