@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) • 457 B
text/typescript
import type { ChangeDetails } from './changeDetails';
import type { HistoryMetadata } from './historyMetadata';
import type { UserDetails } from './userDetails';
/** A changelog. */
export interface Changelog {
/** The ID of the changelog. */
id?: string;
author?: UserDetails;
/** The date on which the change took place. */
created?: string;
/** The list of items changed. */
items?: ChangeDetails[];
historyMetadata?: HistoryMetadata;
}