ts/styles linter warnings

This commit is contained in:
felipe
2017-03-09 09:45:01 +01:00
parent 2684f16579
commit f5144e6d72
12 changed files with 91 additions and 89 deletions

View File

@ -1,12 +1,12 @@
import {XmlComponent} from "../../docx/xml-components";
import {StyleAttributes} from "./attributes";
import { XmlComponent } from "../../docx/xml-components";
import { StyleAttributes } from "./attributes";
export class Name extends XmlComponent {
constructor(value: string) {
super("w:name");
this.root.push(new StyleAttributes({
val: value
val: value,
}));
}
}
@ -16,7 +16,7 @@ export class BasedOn extends XmlComponent {
constructor(value: string) {
super("w:basedOn");
this.root.push(new StyleAttributes({
val: value
val: value,
}));
}
}
@ -27,7 +27,7 @@ export class Next extends XmlComponent {
super("w:next");
this.root.push(new StyleAttributes({
styleId: "1",
val: value
val: value,
}));
}
}
@ -37,7 +37,7 @@ export class Link extends XmlComponent {
constructor(value: string) {
super("w:link");
this.root.push(new StyleAttributes({
val: value
val: value,
}));
}
}
@ -47,7 +47,7 @@ export class UiPriority extends XmlComponent {
constructor(value: string) {
super("w:uiPriority");
this.root.push(new StyleAttributes({
val: value
val: value,
}));
}
}
@ -73,4 +73,4 @@ export class RsId extends XmlComponent {
export class SemiHidden extends XmlComponent {
}
}