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) 359 B
import type { WorkflowLayout } from './workflowLayout'; /** The statuses associated with this workflow. */ export interface StatusLayoutUpdate { layout?: WorkflowLayout; /** The properties for this status layout. */ properties: unknown; /** A unique ID which the status will use to refer to this layout configuration. */ statusReference: string; }