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.

11 lines (9 loc) 277 B
import type { GroupName } from './groupName'; import type { User } from './user'; /** Details of a user or group subscribing to a filter. */ export interface FilterSubscription { group?: GroupName; /** The ID of the filter subscription. */ id?: number; user?: User; }