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) 302 B
/** Details of an issue type screen scheme. */ export interface IssueTypeScreenScheme { /** The description of the issue type screen scheme. */ description?: string; /** The ID of the issue type screen scheme. */ id: string; /** The name of the issue type screen scheme. */ name: string; }