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.

8 lines (7 loc) 247 B
/** Describes the error that occurred when retrieving data for a particular issue. */ export interface IssueError { /** The error that occurred when fetching this issue. */ errorMessage?: string; /** The ID of the issue. */ id?: string; }