@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.
12 lines (10 loc) • 406 B
text/typescript
import type { WorkflowCondition } from './workflowCondition';
import type { WorkflowTransitionRule } from './workflowTransitionRule';
/** A collection of transition rules. */
export interface WorkflowRules {
conditionsTree?: WorkflowCondition;
/** The workflow validators. */
validators?: WorkflowTransitionRule[];
/** The workflow post functions. */
postFunctions?: WorkflowTransitionRule[];
}