@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.
16 lines (14 loc) • 665 B
text/typescript
import type { VersionUsageInCustomField } from './versionUsageInCustomField';
/** Various counts of issues within a version. */
export interface VersionIssueCounts {
/** The URL of these count details. */
self?: string;
/** Count of issues where the `fixVersion` is set to the version. */
issuesFixedCount?: number;
/** Count of issues where the `affectedVersion` is set to the version. */
issuesAffectedCount?: number;
/** Count of issues where a version custom field is set to the version. */
issueCountWithCustomFieldsShowingVersion?: number;
/** List of custom fields using the version. */
customFieldUsage?: VersionUsageInCustomField[];
}