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.

12 lines (11 loc) 411 B
export interface ActorsMap { /** * The name of the group to add. This parameter cannot be used with the `groupId` parameter. As a group's name can * change, use of `groupId` is recommended. */ group?: string[]; /** The ID of the group to add. This parameter cannot be used with the `group` parameter. */ groupId?: string[]; /** The user account ID of the user to add. */ user?: string[]; }