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.

10 lines (9 loc) 335 B
/** Details about the server Jira is running on. */ export interface WorkflowTransitionProperty { /** The key of the transition property. Also known as the name of the transition property. */ key?: string; /** The value of the transition property. */ value: string; /** The ID of the transition property. */ id?: string; }