Files
docx-js/src/file/app-properties/app-properties-attributes.ts
2018-02-08 00:12:59 +00:00

14 lines
322 B
TypeScript

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