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.

8 lines (6 loc) 273 B
import type { CustomFieldOptionUpdate } from './customFieldOptionUpdate'; /** Details of the options to update for a custom field. */ export interface BulkCustomFieldOptionUpdateRequest { /** Details of the options to update. */ options?: CustomFieldOptionUpdate[]; }