Change docx folder to more appropriate "file" folder
This commit is contained in:
11
src/file/paragraph/formatting/style.ts
Normal file
11
src/file/paragraph/formatting/style.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import { Attributes, XmlComponent } from "../../xml-components";
|
||||
|
||||
export class Style extends XmlComponent {
|
||||
|
||||
constructor(type: string) {
|
||||
super("w:pStyle");
|
||||
this.root.push(new Attributes({
|
||||
val: type,
|
||||
}));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user