added run
This commit is contained in:
15
ts/docx/run/index.ts
Normal file
15
ts/docx/run/index.ts
Normal 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);
|
||||
}
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user