@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
text/typescript
import type { Fields } from './fields';
/** The ID or key of a linked issue. */
export interface LinkedIssue {
fields?: Fields;
/** 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;
}