@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.
17 lines (15 loc) • 542 B
text/typescript
import type { DashboardGadgetPosition } from './dashboardGadgetPosition';
/** Details of a gadget. */
export interface DashboardGadget {
/** The color of the gadget. Should be one of `blue`, `red`, `yellow`, `green`, `cyan`, `purple`, `gray`, or `white`. */
color: string;
/** The ID of the gadget instance. */
id: number;
/** The module key of the gadget type. */
moduleKey?: string;
position?: DashboardGadgetPosition;
/** The title of the gadget. */
title: string;
/** The URI of the gadget type. */
uri?: string;
}