10 lines
283 B
TypeScript
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");
|
|
}
|
|
}
|