@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.
10 lines (9 loc) • 312 B
text/typescript
/** Details of a field configuration scheme. */
export interface FieldConfigurationScheme {
/** The ID of the field configuration scheme. */
id: string;
/** The name of the field configuration scheme. */
name: string;
/** The description of the field configuration scheme. */
description?: string;
}