@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.
13 lines (11 loc) • 399 B
text/typescript
import type { ErrorCollection } from './errorCollection';
/** Details of the sanitized JQL query. */
export interface SanitizedJqlQuery {
/** The initial query. */
initialQuery?: string;
/** The sanitized query, if there were no errors. */
sanitizedQuery?: string;
errors?: ErrorCollection;
/** The account ID of the user for whom sanitization was performed. */
accountId?: string;
}