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.

13 lines (11 loc) 338 B
import type { Fields } from './fields'; /** The ID or key of a linked issue. */ export interface LinkedIssue { /** The ID of an issue. Required if `key` isn't provided. */ id?: string; /** The key of an issue. Required if `id` isn't provided. */ key?: string; /** The URL of the issue. */ self?: string; fields?: Fields; }