fix some linter warnings

This commit is contained in:
felipe
2017-03-09 21:06:54 +01:00
parent 0fe6ff95a2
commit 30fef5238e
2 changed files with 28 additions and 30 deletions

View File

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