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.

12 lines (11 loc) 357 B
/** Details of a field configuration. */ export interface FieldConfiguration { /** The ID of the field configuration. */ id: number; /** The name of the field configuration. */ name: string; /** The description of the field configuration. */ description: string; /** Whether the field configuration is the default. */ isDefault?: boolean; }