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 { GetTeamResponseForPage } from './getTeamResponseForPage'; export interface PageWithCursorGetTeamResponseForPage { cursor?: string; last?: boolean; nextPageCursor?: string; size?: number; total?: number; values?: GetTeamResponseForPage[]; }