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.

13 lines (12 loc) 440 B
/** Details of the workflow and its transition rules. */ export interface WorkflowRulesSearch { /** * Use expand to include additional information in the response. This parameter accepts `transition` which, for each * rule, returns information about the transition the rule is assigned to. */ expand?: string; /** The list of workflow rule IDs. */ ruleIds: string[]; /** The workflow ID. */ workflowEntityId: string; }