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 (8 loc) 279 B
import type { Changelog } from './changelog'; /** List of changelogs that belong to single issue */ export interface IssueChangeLog { /** List of changelogs that belongs to given issueId. */ changeHistories?: Changelog[]; /** The ID of the issue. */ issueId?: string; }