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) 462 B
import type { AuditRecord } from './auditRecord'; /** Container for a list of audit records. */ export interface AuditRecords { /** The number of audit items skipped before the first item in this list. */ offset?: number; /** The requested or default limit on the number of audit items to be returned. */ limit?: number; /** The total number of audit items returned. */ total?: number; /** The list of audit items. */ records?: AuditRecord[]; }