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 (9 loc) 270 B
/** The details of the available dashboard gadget. */ export interface AvailableDashboardGadget { /** The module key of the gadget type. */ moduleKey?: string; /** The title of the gadget. */ title: string; /** The URI of the gadget type. */ uri?: string; }