docx
Version:
Generate .docx documents with JavaScript (formerly Office-Clippy)
16 lines (15 loc) • 458 B
TypeScript
import { XmlAttributeComponent } from "../../../file/xml-components";
export interface IRelationshipAttributesProperties {
id: string;
type: string;
target: string;
targetMode?: string;
}
export declare class RelationshipAttributes extends XmlAttributeComponent<IRelationshipAttributesProperties> {
protected xmlKeys: {
id: string;
type: string;
target: string;
targetMode: string;
};
}