@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 (12 loc) • 576 B
text/typescript
/** Details of Jira expressions for analysis. */
export interface JiraExpressionForAnalysis {
/**
* Context variables and their types. The type checker assumes that [common context
* variables](https://developer.atlassian.com/cloud/jira/platform/jira-expressions/#context-variables), such as
* `issue` or `project`, are available in context and sets their type. Use this property to override the default types
* or provide details of new variables.
*/
contextVariables?: unknown;
/** The list of Jira expressions to analyse. */
expressions: string[];
}