@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.
18 lines (16 loc) • 562 B
text/typescript
import type { Dashboard } from './dashboard';
/** A page containing dashboard details. */
export interface PageOfDashboards {
/** The index of the first item returned on the page. */
startAt?: number;
/** The maximum number of results that could be on the page. */
maxResults?: number;
/** The number of results on the page. */
total?: number;
/** The URL of the previous page of results, if any. */
prev?: string;
/** The URL of the next page of results, if any. */
next?: string;
/** List of dashboards. */
dashboards?: Dashboard[];
}