2018-02-08 00:12:59 +00:00
|
|
|
import { XmlComponent } from "file/xml-components";
|
|
|
|
import { AppPropertiesAttributes } from "./app-properties-attributes";
|
|
|
|
|
|
|
|
export class AppProperties extends XmlComponent {
|
|
|
|
constructor() {
|
|
|
|
super("Properties");
|
|
|
|
|
2018-02-08 00:52:05 +00:00
|
|
|
this.root.push(
|
|
|
|
new AppPropertiesAttributes({
|
|
|
|
xmlns: "http://schemas.openxmlformats.org/officeDocument/2006/extended-properties",
|
|
|
|
vt: "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes",
|
|
|
|
}),
|
|
|
|
);
|
2018-02-08 00:12:59 +00:00
|
|
|
}
|
|
|
|
}
|