@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.
14 lines (13 loc) • 538 B
text/typescript
/** Announcement banner configuration. */
export interface AnnouncementBannerConfiguration {
/** 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;
/** Hash of the banner data. The client detects updates by comparing hash IDs. */
hashId?: string;
/** Visibility of the announcement banner. */
visibility?: string;
}