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) 265 B
/** The status reference and port that a transition is connected to. */ export interface StatusReferenceAndPort { /** The port this transition uses to connect to this status. */ port?: number; /** The reference of this status. */ statusReference: string; }