@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.
9 lines (7 loc) • 380 B
text/typescript
import type { ProjectCreateResourceIdentifier } from './projectCreateResourceIdentifier';
/** The payload for the layout details for the destination end of a transition */
export interface ToLayoutPayload {
/** Defines where the transition line will be connected to a status. Port 0 to 7 are acceptable values. */
port?: number;
status?: ProjectCreateResourceIdentifier;
}