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.

10 lines (9 loc) 322 B
export interface MoveField { /** * The ID of the screen tab field after which to place the moved screen tab field. Required if `position` isn't * provided. */ after?: string; /** The named position to which the screen tab field should be moved. Required if `after` isn't provided. */ position?: string; }