@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.
10 lines (8 loc) • 431 B
text/typescript
import type { BulkProjectPermissionGrants } from './bulkProjectPermissionGrants';
/** Details of global and project permissions granted to the user. */
export interface BulkPermissionGrants {
/** List of permissions granted to the user. */
globalPermissions: string[];
/** List of project permissions and the projects and issues those permissions provide access to. */
projectPermissions: BulkProjectPermissionGrants[];
}