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.

14 lines (13 loc) 445 B
/** Details of an issue type scheme. */ export interface IssueTypeScheme { /** The ID of the issue type scheme. */ id: string; /** The name of the issue type scheme. */ name: string; /** The description of the issue type scheme. */ description?: string; /** The ID of the default issue type of the issue type scheme. */ defaultIssueTypeId?: string; /** Whether the issue type scheme is the default. */ isDefault?: boolean; }