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) 243 B
/** Details of a field configuration. */ export interface FieldConfigurationDetails { /** The description of the field configuration. */ description?: string; /** The name of the field configuration. Must be unique. */ name: string; }