@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.
13 lines (11 loc) • 409 B
text/typescript
import type { WorkflowStatusLayout } from './workflowStatusLayout';
/** The statuses referenced in the workflow. */
export interface WorkflowReferenceStatus {
/** Indicates if the status is deprecated. */
deprecated?: boolean;
layout?: WorkflowStatusLayout;
/** The properties associated with the status. */
properties?: unknown;
/** The reference of the status. */
statusReference?: string;
}