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

14 lines
328 B
TypeScript
Raw Normal View History

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