@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) • 368 B
text/typescript
/** The IDs of the screens for the screen types of the screen scheme. */
export interface ScreenTypes {
/** The ID of the edit screen. */
edit?: number;
/** The ID of the create screen. */
create?: number;
/** The ID of the view screen. */
view?: number;
/** The ID of the default screen. Required when creating a screen scheme. */
default?: number;
}