Files
docx-js/src/file/relationships/relationship/relationship-attributes.ts
2018-05-06 22:23:35 -05:00

18 lines
435 B
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",
};
}