@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) • 399 B
text/typescript
import type { ProjectCreateResourceIdentifier } from './projectCreateResourceIdentifier';
/** The payload for the layout details for the start end of a transition */
export interface FromLayoutPayload {
/** The port that the transition can be made from */
fromPort?: number;
status?: ProjectCreateResourceIdentifier;
/** The port that the transition goes to */
toPortOverride?: number;
}