@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.
10 lines (8 loc) • 346 B
text/typescript
import type { SimpleErrorCollection } from './simpleErrorCollection';
export interface RemoveOptionFromIssuesResult {
errors?: SimpleErrorCollection;
/** The IDs of the modified issues. */
modifiedIssues?: number[];
/** The IDs of the unchanged issues, those issues where errors prevent modification. */
unmodifiedIssues?: number[];
}