@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 (11 loc) • 383 B
text/typescript
/** A workflow transition condition. */
export interface CreateWorkflowCondition {
/** The compound condition operator. */
operator?: string;
/** The list of workflow conditions. */
conditions?: CreateWorkflowCondition[];
/** The type of the transition rule. */
type?: string;
/** EXPERIMENTAL. The configuration of the transition rule. */
configuration?: unknown;
}