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) 335 B
/** Details of how to filter and list search auto complete information. */ export interface SearchAutoCompleteFilter { /** List of project IDs used to filter the visible field details returned. */ projectIds?: number[]; /** Include collapsed fields for fields that have non-unique names. */ includeCollapsedFields?: boolean; }