Files
docx-js/src/file/settings/display-background-shape.ts
2020-10-27 01:54:40 +00:00

10 lines
283 B
TypeScript

// http://officeopenxml.com/WPdocument.php
// http://www.datypic.com/sc/ooxml/e-w_background-1.html
import { XmlComponent } from "file/xml-components";
export class DisplayBackgroundShape extends XmlComponent {
constructor() {
super("w:displayBackgroundShape");
}
}