@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) • 405 B
text/typescript
import type { UpdateScreenTypes } from './updateScreenTypes';
/** Details of a screen scheme. */
export interface UpdateScreenSchemeDetails {
/** 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?: UpdateScreenTypes;
}