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

14 lines
349 B
TypeScript
Raw Normal View History

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