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) 412 B
import type { WorkflowStatusLayoutPayload } from './workflowStatusLayoutPayload'; import type { ProjectCreateResourceIdentifier } from './projectCreateResourceIdentifier'; /** The statuses to be used in the workflow */ export interface WorkflowStatusPayload { layout?: WorkflowStatusLayoutPayload; pcri?: ProjectCreateResourceIdentifier; /** The properties of the workflow status. */ properties?: {}; }