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) 245 B
/** A list of the issues matched to a JQL query or details of errors encountered during matching. */ export interface IssueMatchesForJQL { /** A list of errors. */ errors: string[]; /** A list of issue IDs. */ matchedIssues: number[]; }