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) 302 B
/** Details about the replacement for a deleted version. */ export interface CustomFieldReplacement { /** The ID of the custom field in which to replace the version number. */ customFieldId?: number; /** The version number to use as a replacement for the deleted version. */ moveTo?: number; }