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) 284 B
/** Details about the mapping from a status to a new status for an issue type. */ export interface StatusMapping { /** The ID of the issue type. */ issueTypeId: string; /** The ID of the new status. */ newStatusId: string; /** The ID of the status. */ statusId: string; }