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.

23 lines (21 loc) 636 B
import type { ScreenID } from './screenID'; import type { WorkflowRules } from './workflowRules'; /** Details of a workflow transition. */ export interface Transition { /** The ID of the transition. */ id: string; /** The name of the transition. */ name: string; /** The description of the transition. */ description: string; /** The statuses the transition can start from. */ from: string[]; /** The status the transition goes to. */ to: string; /** The type of the transition. */ type: string; screen?: ScreenID; rules?: WorkflowRules; /** The properties of the transition. */ properties?: unknown; }