@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.
13 lines (11 loc) • 411 B
text/typescript
import type { IssueChangeLog } from './issueChangeLog';
/** A page of changelogs which is designed to handle multiple issues */
export interface BulkChangelog {
/** The list of issues changelogs. */
issueChangeLogs?: IssueChangeLog[];
/**
* Continuation token to fetch the next page. If this result represents the last or the only page, this token will be
* null.
*/
nextPageToken?: string;
}