@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
text/typescript
/** Details of a field configuration. */
export interface FieldConfiguration {
/** The description of the field configuration. */
description: string;
/** The ID of the field configuration. */
id: number;
/** Whether the field configuration is the default. */
isDefault?: boolean;
/** The name of the field configuration. */
name: string;
}