Files
docx-js/src/file/document/body/doc-grid.ts
2018-01-23 01:33:12 +00:00

13 lines
284 B
TypeScript

import { Attributes, XmlComponent } from "file/xml-components";
export class DocumentGrid extends XmlComponent {
constructor() {
super("w:docGrid");
this.root.push(
new Attributes({
linePitch: "360",
}),
);
}
}