Files
docx-js/src/file/relationships/relationship/relationship-attributes.ts
2021-03-15 00:11:39 +00:00

16 lines
394 B
TypeScript

import { XmlAttributeComponent } from "file/xml-components";
export class RelationshipAttributes extends XmlAttributeComponent<{
readonly id: string;
readonly type: string;
readonly target: string;
readonly targetMode?: string;
}> {
protected readonly xmlKeys = {
id: "Id",
type: "Type",
target: "Target",
targetMode: "TargetMode",
};
}