Files
docx-js/ts/docx/paragraph/style.ts
2017-03-08 20:35:26 +00:00

11 lines
247 B
TypeScript

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