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 (7 loc) 223 B
/** Details of a custom option for a field. */ export interface CustomFieldOption { /** The URL of these custom field option details. */ self?: string; /** The value of the custom field option. */ value?: string; }