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.

18 lines (16 loc) 618 B
import type { Article } from './article'; import type { PagedLink } from './pagedLink'; export interface PagedArticle { /** Number of items returned in the page. */ size?: number; /** Index of the first item returned in the page. */ start?: number; /** Number of items to be returned per page, up to the maximum set for these objects in the current implementation. */ limit?: number; /** Indicates if this is the last page of records (true) or not (false). */ isLastPage?: boolean; /** Details of the items included in the page. */ values?: Article[]; Expands?: string[]; Links?: PagedLink; }