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) 359 B
import type { JexpEvaluateCtxJqlIssues } from './jexpEvaluateCtxJqlIssues'; /** * The JQL specifying the issues available in the evaluated Jira expression under the `issues` context variable. This * bean will be replacing `JexpIssues` bean as part of new `evaluate` endpoint */ export interface JexpEvaluateCtxIssues { jql?: JexpEvaluateCtxJqlIssues; }