added run

This commit is contained in:
Dolan Miu
2016-03-30 03:50:53 +01:00
parent b749e42671
commit a0acb6d1a6
9 changed files with 48 additions and 23 deletions

15
ts/docx/run/index.ts Normal file
View File

@ -0,0 +1,15 @@
import {XmlComponent, Attributes} from "../xml-components";
import {RunProperties} from "./properties";
export class Run implements XmlComponent {
protected r: Array<XmlComponent>;
private properties: RunProperties;
constructor() {
this.r = new Array<XmlComponent>();
this.properties = new RunProperties();
this.r.push(this.properties);
}
}