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) 328 B
/** JQL queries that contained users that could not be found */ export interface JQLQueryWithUnknownUsers { /** The original query, for reference */ originalQuery?: string; /** The converted query, with accountIDs instead of user identifiers, or 'unknown' for users that could not be found */ convertedQuery?: string; }