Files
docx-js/src/file/app-properties/app-properties.ts

16 lines
518 B
TypeScript
Raw Normal View History

import { XmlComponent } from "@file/xml-components";
2018-02-08 00:12:59 +00:00
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
}
}