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.

10 lines (8 loc) 345 B
import type { SharePermission } from './sharePermission'; /** Details for permissions of shareable entities */ export interface PermissionDetails { /** The edit permissions for the shareable entities. */ editPermissions: SharePermission[]; /** The share permissions for the shareable entities. */ sharePermissions: SharePermission[]; }