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.

8 lines (7 loc) 321 B
/** Details of a notification within a notification scheme. */ export interface NotificationSchemeNotificationDetails { /** The notification type, e.g `CurrentAssignee`, `Group`, `EmailAddress`. */ notificationType: string; /** The value corresponding to the specified notification type. */ parameter?: string; }