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.

8 lines (6 loc) 256 B
import type { GetPermissionHolderResponse } from './getPermissionHolderResponse'; export interface GetPermissionResponse { holder?: GetPermissionHolderResponse; /** The permission type. This is "View" or "Edit". */ type: 'View' | 'Edit' | string; }