Write tests

This commit is contained in:
Dolan
2021-03-13 22:10:00 +00:00
parent 4bc0421055
commit 0bc36d924f
9 changed files with 91 additions and 32 deletions

View File

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