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.

12 lines (11 loc) 407 B
/** Counts of the number of issues in various statuses. */ export interface VersionIssuesStatus { /** Count of issues with status _done_. */ done?: number; /** Count of issues with status _in progress_. */ inProgress?: number; /** Count of issues with status _to do_. */ toDo?: number; /** Count of issues with a status other than _to do_, _in progress_, and _done_. */ unmapped?: number; }