docx
Version:
Generate .docx documents with JavaScript (formerly Office-Clippy)
18 lines (15 loc) • 452 B
text/typescript
import { XmlAttributeComponent } from "file/xml-components";
export interface IRelationshipAttributesProperties {
id: string;
type: string;
target: string;
targetMode?: string;
}
export class RelationshipAttributes extends XmlAttributeComponent<IRelationshipAttributesProperties> {
protected xmlKeys = {
id: "Id",
type: "Type",
target: "Target",
targetMode: "TargetMode",
};
}