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.

10 lines (8 loc) 259 B
import type { ProjectUsage } from './projectUsage'; /** A page of projects. */ export interface ProjectUsagePage { /** Page token for the next page of project usages. */ nextPageToken?: string; /** The list of projects. */ values?: ProjectUsage[]; }