@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.
12 lines (10 loc) • 409 B
text/typescript
import type { JiraWorkflowStatus } from './jiraWorkflowStatus';
import type { JiraWorkflow } from './jiraWorkflow';
export interface WorkflowUpdate {
/** List of updated statuses. */
statuses?: JiraWorkflowStatus[];
/** If there is a [asynchronous task](#async-operations) operation, as a result of this update. */
taskId?: string;
/** List of updated workflows. */
workflows?: JiraWorkflow[];
}