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.

10 lines (8 loc) 425 B
import type { JQLQueryWithUnknownUsers } from './jQLQueryWithUnknownUsers'; /** The converted JQL queries. */ export interface ConvertedJQLQueries { /** List of queries containing user information that could not be mapped to an existing user */ queriesWithUnknownUsers?: JQLQueryWithUnknownUsers[]; /** The list of converted query strings with account IDs in place of user identifiers. */ queryStrings?: string[]; }