linting fixes

This commit is contained in:
Dolan
2017-03-08 21:49:41 +00:00
parent 279a5a93f1
commit 946a222d37
16 changed files with 67 additions and 66 deletions

View File

@ -1,5 +1,5 @@
import {Text} from "./text";
import {Run} from "../run";
import { Run } from "../run";
import { Text } from "./text";
export class TextRun extends Run {
@ -7,4 +7,4 @@ export class TextRun extends Run {
super();
this.root.push(new Text(text));
}
}
}