Change docx folder to more appropriate "file" folder
This commit is contained in:
11
src/file/document/body/doc-grid.ts
Normal file
11
src/file/document/body/doc-grid.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import { Attributes, XmlComponent } from "../../xml-components";
|
||||
|
||||
export class DocumentGrid extends XmlComponent {
|
||||
|
||||
constructor() {
|
||||
super("w:docGrid");
|
||||
this.root.push(new Attributes({
|
||||
linePitch: "360",
|
||||
}));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user