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.

11 lines (9 loc) 290 B
import type { Comment } from './comment'; import type { IssueLinkType } from './issueLinkType'; import type { LinkedIssue } from './linkedIssue'; export interface LinkIssueRequestJson { comment?: Comment; inwardIssue: LinkedIssue; outwardIssue: LinkedIssue; type: IssueLinkType; }