Files
docx-js/src/file/custom-properties/custom-properties-attributes.ts

12 lines
284 B
TypeScript
Raw Normal View History

import { XmlAttributeComponent } from "file/xml-components";
2021-03-13 22:43:21 +00:00
export class CustomPropertiesAttributes extends XmlAttributeComponent<{
readonly xmlns: string;
readonly vt: string;
2021-03-13 22:43:21 +00:00
}> {
protected readonly xmlKeys = {
xmlns: "xmlns",
vt: "xmlns:vt",
};
}