@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.
8 lines (6 loc) • 363 B
text/typescript
import type { NotificationSchemeEventDetails } from './notificationSchemeEventDetails';
/** Details of notifications which should be added to the notification scheme. */
export interface AddNotificationsDetails {
/** The list of notifications which should be added to the notification scheme. */
notificationSchemeEvents: NotificationSchemeEventDetails[];
}