/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { IssueLinkType } from './issue_link_type'; import { IssueRef } from './issue_ref'; export interface IssueLink { id?: string; self?: string; type?: IssueLinkType; inwardIssue?: IssueRef; outwardIssue?: IssueRef; } //# sourceMappingURL=issue_link.d.ts.map