@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.
11 lines (10 loc) • 334 B
text/typescript
/** A field auto-complete suggestion. */
export interface AutoCompleteSuggestion {
/** The value of a suggested item. */
value?: string;
/**
* The display name of a suggested item. If `fieldValue` or `predicateValue` are provided, the matching text is
* highlighted with the HTML bold tag.
*/
displayName?: string;
}