Remove all references to template

This commit is contained in:
Dolan
2018-02-08 00:12:59 +00:00
parent ce7ef30806
commit a78f06b41b
11 changed files with 79 additions and 59 deletions

View File

@ -0,0 +1,13 @@
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",
};
}