@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) • 425 B
text/typescript
import type { RuleConfiguration } from './ruleConfiguration';
import type { WorkflowTransition } from './workflowTransition';
/** A workflow transition rule. */
export interface ConnectWorkflowTransitionRule {
configuration: RuleConfiguration;
/** The ID of the transition rule. */
id: string;
/** The key of the rule, as defined in the Connect app descriptor. */
key: string;
transition?: WorkflowTransition;
}