2022-06-26 23:26:42 +01:00
|
|
|
import { XmlComponent } from "@file/xml-components";
|
2018-01-16 01:31:47 +00:00
|
|
|
import { DocPropertiesAttributes } from "./doc-properties-attributes";
|
|
|
|
|
|
|
|
export class DocProperties extends XmlComponent {
|
2022-08-31 07:52:27 +01:00
|
|
|
public constructor() {
|
2018-01-16 01:31:47 +00:00
|
|
|
super("wp:docPr");
|
|
|
|
|
2018-01-23 01:33:12 +00:00
|
|
|
this.root.push(
|
|
|
|
new DocPropertiesAttributes({
|
|
|
|
id: 0,
|
|
|
|
name: "",
|
|
|
|
descr: "",
|
|
|
|
}),
|
|
|
|
);
|
2018-01-16 01:31:47 +00:00
|
|
|
}
|
|
|
|
}
|