UNPKG

@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) 474 B
/** Configuration of the announcement banner. */ export interface AnnouncementBannerConfigurationUpdate { /** The text on the announcement banner. */ message?: string; /** Flag indicating if the announcement banner can be dismissed by the user. */ isDismissible?: boolean; /** Flag indicating if the announcement banner is enabled or not. */ isEnabled?: boolean; /** Visibility of the announcement banner. Can be public or private. */ visibility?: string; }