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 (8 loc) 335 B
/** Bulk operation filter details. */ export interface IssueFilterForBulkPropertyDelete { /** The value of properties to perform the bulk operation on. */ // eslint-disable-next-line @typescript-eslint/no-explicit-any currentValue?: any; /** List of issues to perform the bulk delete operation on. */ entityIds?: number[]; }