@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 (9 loc) • 364 B
text/typescript
/** List of project permissions and the projects and issues those permissions grant access to. */
export interface BulkProjectPermissionGrants {
/** IDs of the issues the user has the permission for. */
issues: number[];
/** A project permission, */
permission: string;
/** IDs of the projects the user has the permission for. */
projects: number[];
}