diff --git a/ts/style/index.ts b/ts/style/index.ts index 33cd86e1c9..8be9352d9b 100644 --- a/ts/style/index.ts +++ b/ts/style/index.ts @@ -1,8 +1,12 @@ import {XmlComponent} from "../docx/xml-components"; import {DocumentAttributes} from "../docx/xml-components/document-attributes" -export class Style { +export class Style implements XmlComponent { private styles: Array; + + xmlKeys = { + styles: 'w:styles' + } constructor() { this.styles = new Array();