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) 232 B
/** Details of an issue type. */ export interface IssueTypeInfo { /** The ID of the issue type. */ id?: number; /** The name of the issue type. */ name?: string; /** The avatar of the issue type. */ avatarId?: number; }