@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) • 549 B
text/typescript
/** The IDs of the screens for the screen types of the screen scheme. */
export interface UpdateScreenTypes {
/** The ID of the create screen. To remove the screen association, pass a null. */
create?: string;
/** The ID of the default screen. When specified, must include a screen ID as a default screen is required. */
default?: string;
/** The ID of the edit screen. To remove the screen association, pass a null. */
edit?: string;
/** The ID of the view screen. To remove the screen association, pass a null. */
view?: string;
}