@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 (9 loc) • 400 B
text/typescript
/** Change the order of issue priorities. */
export interface ReorderIssuePriorities {
/** The ID of the priority. Required if `position` isn't provided. */
after?: string;
/** The list of issue IDs to be reordered. Cannot contain duplicates nor after ID. */
ids: string[];
/** The position for issue priorities to be moved to. Required if `after` isn't provided. */
position?: string;
}