Files
docx-js/ts/docx/paragraph/style.ts
2017-03-08 21:36:09 +00:00

12 lines
249 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,
}));
}
}