diff --git a/ts/export/packer/local.ts b/ts/export/packer/local.ts index 6ce796096e..ac07f0bb9d 100644 --- a/ts/export/packer/local.ts +++ b/ts/export/packer/local.ts @@ -4,7 +4,6 @@ import { Numbering } from "../../numbering"; import { Properties } from "../../properties"; import { Packer } from "./packer"; - export class LocalPacker extends Packer { private stream: fs.WriteStream; diff --git a/ts/styles/latent-styles/exceptions/attributes.ts b/ts/styles/latent-styles/exceptions/attributes.ts index 359852bceb..37e1d8abc6 100644 --- a/ts/styles/latent-styles/exceptions/attributes.ts +++ b/ts/styles/latent-styles/exceptions/attributes.ts @@ -9,7 +9,9 @@ interface ILatentStyleExceptionAttributesProperties { } export class LatentStyleExceptionAttributes extends XmlComponent { + /* tslint:disable */ private _attr: ILatentStyleExceptionAttributesProperties; + /* tslint:enable */ private xmlKeys = { name: "w:name", @@ -26,6 +28,6 @@ export class LatentStyleExceptionAttributes extends XmlComponent { if (!properties) { this._attr = {}; } - //this._attr.xmlKeys = this.xmlKeys; + // this._attr.xmlKeys = this.xmlKeys; } } diff --git a/ts/styles/style/components.ts b/ts/styles/style/components.ts index 596a112852..becf418881 100644 --- a/ts/styles/style/components.ts +++ b/ts/styles/style/components.ts @@ -5,7 +5,9 @@ interface IComponentAttributes { } class ComponentAttributes extends XmlAttributeComponent { + /* tslint:disable */ private _attr: IComponentAttributes; + /* tslint:enable */ constructor(properties: IComponentAttributes) { super({val: "w:val"}, properties);