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

14 lines
349 B
TypeScript

import { XmlAttributeComponent } from "file/xml-components";
export interface IAppPropertiesAttributes {
readonly xmlns: string;
readonly vt: string;
}
export class AppPropertiesAttributes extends XmlAttributeComponent<IAppPropertiesAttributes> {
protected readonly xmlKeys = {
xmlns: "xmlns",
vt: "xmlns:vt",
};
}