Add more tests

This commit is contained in:
Dolan
2021-03-13 22:43:21 +00:00
parent 0bc36d924f
commit f0e50dd21f
4 changed files with 17 additions and 17 deletions

View File

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

View File

@ -1,12 +1,10 @@
import { XmlAttributeComponent } from "file/xml-components";
export interface ICustomPropertyAttributes {
export class CustomPropertyAttributes extends XmlAttributeComponent<{
readonly fmtid: string;
readonly pid: string;
readonly name: string;
}
export class CustomPropertyAttributes extends XmlAttributeComponent<ICustomPropertyAttributes> {
}> {
protected readonly xmlKeys = {
fmtid: "fmtid",
pid: "pid",