UNPKG

@esm-js/jira.js

Version:

A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.

14 lines (12 loc) 363 B
import type { IssueLinkType } from './issueLinkType'; import type { LinkedIssue } from './linkedIssue'; /** Details of a link between issues. */ export interface IssueLink { /** The ID of the issue link. */ id?: string; inwardIssue?: LinkedIssue; outwardIssue?: LinkedIssue; /** The URL of the issue link. */ self?: string; type?: IssueLinkType; }