@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.
11 lines (9 loc) • 380 B
text/typescript
import type { ScreenTypes } from './screenTypes';
/** Details of a screen scheme. */
export interface ScreenSchemeDetails {
/** The description of the screen scheme. The maximum length is 255 characters. */
description?: string;
/** The name of the screen scheme. The name must be unique. The maximum length is 255 characters. */
name: string;
screens?: ScreenTypes;
}