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) 288 B
/** The details of the statuses in the associated workflows. */ export interface StatusMetadata { /** The category of the status. */ category?: 'TODO' | 'IN_PROGRESS' | 'DONE' | string; /** The ID of the status. */ id?: string; /** The name of the status. */ name?: string; }