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.

14 lines (12 loc) 425 B
import type { UserDetails } from './userDetails'; /** The details of watchers on an issue. */ export interface Watchers { /** The URL of these issue watcher details. */ self?: string; /** Whether the calling user is watching this issue. */ isWatching?: boolean; /** The number of users watching this issue. */ watchCount?: number; /** Details of the users watching this issue. */ watchers?: UserDetails[]; }