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.

8 lines (6 loc) 237 B
import type { Errors } from './errors'; /** Number of archived/unarchived issues and list of errors that occurred during the action, if any. */ export interface IssueArchivalSync { errors?: Errors; numberOfIssuesUpdated?: number; }