Files
docx-js/ts/docx/paragraph/formatting/style.ts

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