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 (12 loc) 369 B
import type { Comment } from './comment'; /** A page of comments. */ export interface PageOfComments { /** The list of comments. */ comments?: Comment[]; /** The maximum number of items that could be returned. */ maxResults?: number; /** The index of the first item returned. */ startAt?: number; /** The number of items returned. */ total?: number; }