@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 (8 loc) • 301 B
text/typescript
import type { IssueTransition } from './issueTransition';
/** List of issue transitions. */
export interface Transitions {
/** Expand options that include additional transitions details in the response. */
expand?: string;
/** List of issue transitions. */
transitions?: IssueTransition[];
}