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 (11 loc) 330 B
import type { JiraSelectedOptionField } from './jiraSelectedOptionField'; /** * Add or clear a single select field:* * * - To add, specify the option with an `optionId`. * - To clear, pass an option with `optionId` as `-1`. */ export interface JiraSingleSelectField { fieldId: string; option: JiraSelectedOptionField; }