fixed all tslint errors
This commit is contained in:
@ -14,7 +14,7 @@ class Border extends XmlComponent {
|
||||
}
|
||||
|
||||
export class ThematicBreak extends XmlComponent {
|
||||
|
||||
|
||||
constructor() {
|
||||
super("w:pBdr");
|
||||
this.root.push(new Border());
|
||||
|
@ -98,9 +98,9 @@ export class Paragraph extends XmlComponent {
|
||||
this.properties.push(new MaxRightTabStop());
|
||||
return this;
|
||||
}
|
||||
|
||||
|
||||
leftTabStop(position: number): Paragraph {
|
||||
this.properties.push(new LeftTabStop(position))
|
||||
this.properties.push(new LeftTabStop(position));
|
||||
return this;
|
||||
}
|
||||
|
||||
|
@ -2,7 +2,7 @@ import {XmlComponent, Attributes} from "../xml-components";
|
||||
import {Style} from "./style";
|
||||
|
||||
export class NumberProperties extends XmlComponent {
|
||||
|
||||
|
||||
constructor() {
|
||||
super("w:numPr");
|
||||
this.root.push(new IndentLevel(0));
|
||||
|
Reference in New Issue
Block a user