@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.
10 lines (8 loc) • 451 B
text/typescript
import type { NotificationSchemeEventTypeId } from './notificationSchemeEventTypeId';
import type { NotificationSchemeNotificationDetails } from './notificationSchemeNotificationDetails';
/** Details of a notification scheme event. */
export interface NotificationSchemeEventDetails {
event?: NotificationSchemeEventTypeId;
/** The list of notifications mapped to a specified event. */
notifications: NotificationSchemeNotificationDetails[];
}