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.

9 lines (7 loc) 283 B
import type { AttachmentArchiveEntry } from './attachmentArchiveEntry'; export interface AttachmentArchiveImpl { /** The list of the items included in the archive. */ entries?: AttachmentArchiveEntry[]; /** The number of items in the archive. */ totalEntryCount?: number; }