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.

11 lines (9 loc) 343 B
import type { JiraWorkflowStatus } from './jiraWorkflowStatus'; import type { JiraWorkflow } from './jiraWorkflow'; /** Details of the created workflows and statuses. */ export interface WorkflowCreate { /** List of created statuses. */ statuses?: JiraWorkflowStatus[]; /** List of created workflows. */ workflows?: JiraWorkflow[]; }