@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.
17 lines (15 loc) • 612 B
text/typescript
import type { StatusLayoutUpdate } from './statusLayoutUpdate';
import type { TransitionUpdateDTO } from './transitionUpdateDTO';
import type { WorkflowLayout } from './workflowLayout';
/** The details of the workflows to create. */
export interface WorkflowCreate {
/** The description of the workflow to create. */
description?: string;
/** The name of the workflow to create. */
name: string;
startPointLayout?: WorkflowLayout;
/** The statuses associated with this workflow. */
statuses: StatusLayoutUpdate[];
/** The transitions of this workflow. */
transitions: TransitionUpdateDTO[];
}