tslinting

This commit is contained in:
Dolan
2017-03-08 21:59:27 +00:00
parent 77824ce1d2
commit 744b16b753
3 changed files with 9 additions and 9 deletions

View File

@ -35,7 +35,7 @@ export class AbstractNumbering extends XmlComponent {
this.root.push(level);
}
public createLevel(num: number, format: string, text: string, align: string="start") {
public createLevel(num: number, format: string, text: string, align: string = "start"): Level {
const level = new Level(num, format, text, align);
this.addLevel(level);
return level;