added break

This commit is contained in:
Dolan Miu
2016-07-07 18:57:44 +01:00
parent 39ffc03edf
commit 122c87ddf8
2 changed files with 10 additions and 1 deletions

8
ts/docx/run/break.ts Normal file
View File

@ -0,0 +1,8 @@
import {XmlComponent} from "../xml-components";
export class Break extends XmlComponent {
constructor() {
super("w:br");
}
}