Files
docx-js/build/file/relationships/relationship/relationship-attributes.d.ts
2018-04-02 14:37:54 +03:00

14 lines
403 B
TypeScript

import { XmlAttributeComponent } from "../../../file/xml-components";
export interface IRelationshipAttributesProperties {
id: string;
type: string;
target: string;
}
export declare class RelationshipAttributes extends XmlAttributeComponent<IRelationshipAttributesProperties> {
protected xmlKeys: {
id: string;
type: string;
target: string;
};
}