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.

13 lines (12 loc) 540 B
/** An ordered list of issue type IDs and information about where to move them. */ export interface OrderOfIssueTypes { /** The ID of the issue type to place the moved issue types after. Required if `position` isn't provided. */ after?: string; /** * A list of the issue type IDs to move. The order of the issue type IDs in the list is the order they are given after * the move. */ issueTypeIds: string[]; /** The position the issue types should be moved to. Required if `after` isn't provided. */ position?: string; }