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) 276 B
/** Count of a version's unresolved issues. */ export interface VersionUnresolvedIssuesCount { /** Count of issues. */ issuesCount?: number; /** Count of unresolved issues. */ issuesUnresolvedCount?: number; /** The URL of these count details. */ self?: string; }