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.

7 lines (5 loc) 236 B
import type { IssueMatchesForJQL } from './issueMatchesForJQL'; /** A list of matched issues or errors for each JQL query, in the order the JQL queries were passed. */ export interface IssueMatches { matches: IssueMatchesForJQL[]; }