2022-06-26 23:26:42 +01:00
|
|
|
import { XmlAttributeComponent } from "@file/xml-components";
|
2020-08-03 14:58:30 +12:00
|
|
|
|
2021-03-13 22:43:21 +00:00
|
|
|
export class CustomPropertiesAttributes extends XmlAttributeComponent<{
|
2020-08-03 14:58:30 +12:00
|
|
|
readonly xmlns: string;
|
|
|
|
readonly vt: string;
|
2021-03-13 22:43:21 +00:00
|
|
|
}> {
|
2020-08-03 14:58:30 +12:00
|
|
|
protected readonly xmlKeys = {
|
|
|
|
xmlns: "xmlns",
|
|
|
|
vt: "xmlns:vt",
|
|
|
|
};
|
|
|
|
}
|