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.

9 lines (8 loc) 290 B
/** A workflow transition rule. */ export interface WorkflowTransitionRule { /** EXPERIMENTAL. The configuration of the transition rule. */ // eslint-disable-next-line @typescript-eslint/no-explicit-any configuration?: any; /** The type of the transition rule. */ type: string; }