tslint fixes
This commit is contained in:
@ -4,7 +4,6 @@ import { Numbering } from "../../numbering";
|
|||||||
import { Properties } from "../../properties";
|
import { Properties } from "../../properties";
|
||||||
import { Packer } from "./packer";
|
import { Packer } from "./packer";
|
||||||
|
|
||||||
|
|
||||||
export class LocalPacker extends Packer {
|
export class LocalPacker extends Packer {
|
||||||
private stream: fs.WriteStream;
|
private stream: fs.WriteStream;
|
||||||
|
|
||||||
|
@ -9,7 +9,9 @@ interface ILatentStyleExceptionAttributesProperties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class LatentStyleExceptionAttributes extends XmlComponent {
|
export class LatentStyleExceptionAttributes extends XmlComponent {
|
||||||
|
/* tslint:disable */
|
||||||
private _attr: ILatentStyleExceptionAttributesProperties;
|
private _attr: ILatentStyleExceptionAttributesProperties;
|
||||||
|
/* tslint:enable */
|
||||||
|
|
||||||
private xmlKeys = {
|
private xmlKeys = {
|
||||||
name: "w:name",
|
name: "w:name",
|
||||||
@ -26,6 +28,6 @@ export class LatentStyleExceptionAttributes extends XmlComponent {
|
|||||||
if (!properties) {
|
if (!properties) {
|
||||||
this._attr = {};
|
this._attr = {};
|
||||||
}
|
}
|
||||||
//this._attr.xmlKeys = this.xmlKeys;
|
// this._attr.xmlKeys = this.xmlKeys;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,9 @@ interface IComponentAttributes {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class ComponentAttributes extends XmlAttributeComponent {
|
class ComponentAttributes extends XmlAttributeComponent {
|
||||||
|
/* tslint:disable */
|
||||||
private _attr: IComponentAttributes;
|
private _attr: IComponentAttributes;
|
||||||
|
/* tslint:enable */
|
||||||
|
|
||||||
constructor(properties: IComponentAttributes) {
|
constructor(properties: IComponentAttributes) {
|
||||||
super({val: "w:val"}, properties);
|
super({val: "w:val"}, properties);
|
||||||
|
Reference in New Issue
Block a user