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.

8 lines (7 loc) 261 B
/** The status reference and port that a transition is connected to. */ export interface WorkflowStatusAndPort { /** The port the transition is connected to this status. */ port?: number; /** The reference of this status. */ statusReference?: string; }