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

9 lines
408 B
TypeScript

import { XmlComponent } from "../../file/xml-components";
import { Relationship, RelationshipType } from "./relationship/relationship";
export declare class Relationships extends XmlComponent {
constructor();
addRelationship(relationship: Relationship): void;
createRelationship(id: number, type: RelationshipType, target: string): Relationship;
readonly RelationshipCount: number;
}