@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) • 309 B
text/typescript
/** The statuses associated with each workflow. */
export interface StatusesPerWorkflow {
/** The ID of the initial status for the workflow. */
initialStatusId?: string;
/** The status IDs associated with the workflow. */
statuses?: string[];
/** The ID of the workflow. */
workflowId?: string;
}