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

12 lines
281 B
TypeScript
Raw Normal View History

2018-02-08 00:12:59 +00:00
import { XmlAttributeComponent } from "file/xml-components";
2021-03-13 22:10:00 +00:00
export class AppPropertiesAttributes extends XmlAttributeComponent<{
readonly xmlns: string;
readonly vt: string;
2021-03-13 22:10:00 +00:00
}> {
protected readonly xmlKeys = {
2018-02-08 00:12:59 +00:00
xmlns: "xmlns",
vt: "xmlns:vt",
};
}