Add more tests
This commit is contained in:
@ -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",
|
||||
|
@ -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",
|
||||
|
Reference in New Issue
Block a user