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.

11 lines (9 loc) 267 B
import type { GetPlanResponseForPage } from './getPlanResponseForPage'; export interface PageWithCursorGetPlanResponseForPage { cursor?: string; last?: boolean; nextPageCursor?: string; size?: number; total?: number; values?: GetPlanResponseForPage[]; }