Files
docx-js/ts/docx/run/properties.ts
Dolan Miu a0acb6d1a6 added run
2016-03-30 03:50:53 +01:00

10 lines
207 B
TypeScript

import {XmlComponent, Attributes} from "../xml-components";
export class RunProperties {
private rPr: Array<XmlComponent>;
constructor() {
this.rPr = new Array<XmlComponent>();
}
}