Files
docx-js/ts/docx/run/index.ts

15 lines
392 B
TypeScript
Raw Normal View History

2016-03-30 03:50:53 +01:00
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);
}
}