@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.
17 lines (15 loc) • 432 B
text/typescript
import type { StatusCategory } from './statusCategory';
/** A status. */
export interface StatusDetails {
/** The URL of the status. */
self?: string;
/** The description of the status. */
description?: string;
/** The URL of the icon used to represent the status. */
iconUrl?: string;
/** The name of the status. */
name?: string;
/** The ID of the status. */
id?: string;
statusCategory?: StatusCategory;
}