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.

14 lines (13 loc) 573 B
/** The description of the page of issues loaded by the provided JQL query. */ export interface IssuesJqlMetaData { /** The index of the first issue. */ startAt: number; /** The maximum number of issues that could be loaded in this evaluation. */ maxResults: number; /** The number of issues that were loaded in this evaluation. */ count: number; /** The total number of issues the JQL returned. */ totalCount: number; /** Any warnings related to the JQL query. Present only if the validation mode was set to `warn`. */ validationWarnings?: string[]; }