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 (6 loc) 230 B
import type { AutoCompleteSuggestion } from './autoCompleteSuggestion'; /** The results from a JQL query. */ export interface AutoCompleteSuggestions { /** The list of suggested item. */ results?: AutoCompleteSuggestion[]; }