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.

9 lines (7 loc) 237 B
import type { FoundGroups } from './foundGroups'; import type { FoundUsers } from './foundUsers'; /** List of users and groups found in a search. */ export interface FoundUsersAndGroups { users?: FoundUsers; groups?: FoundGroups; }