@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.
8 lines (6 loc) • 323 B
text/typescript
import type { WorkflowTransitionRulesDetails } from './workflowTransitionRulesDetails';
/** Details of workflows and their transition rules to delete. */
export interface WorkflowsWithTransitionRulesDetails {
/** The list of workflows with transition rules to delete. */
workflows: WorkflowTransitionRulesDetails[];
}