@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.
10 lines (9 loc) • 366 B
text/typescript
/** The statuses the transition can start from, and the mapping of ports between the statuses. */
export interface WorkflowTransitionLinks {
/** The port that the transition starts from. */
fromPort?: number;
/** The status that the transition starts from. */
fromStatusReference?: string;
/** The port that the transition goes to. */
toPort?: number;
}