Files
docx-js/ts/docx/paragraph/style.ts
2016-04-09 20:16:35 +01:00

11 lines
245 B
TypeScript

import {XmlComponent, Attributes} from "../xml-components";
export class Style extends XmlComponent {
constructor(type: string) {
super("w:pStyle");
this.root.push(new Attributes({
val: type
}));
}
}