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.

14 lines (12 loc) 423 B
import type { SharePermission } from './sharePermission'; /** Details of a dashboard. */ export interface DashboardDetails { /** The description of the dashboard. */ description?: string; /** The edit permissions for the dashboard. */ editPermissions: SharePermission[]; /** The name of the dashboard. */ name: string; /** The share permissions for the dashboard. */ sharePermissions: SharePermission[]; }