@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.
11 lines (9 loc) • 400 B
text/typescript
import type { DashboardGadgetPosition } from './dashboardGadgetPosition';
/** The details of the gadget to update. */
export interface DashboardGadgetUpdateRequest {
/** The title of the gadget. */
title?: string;
/** The color of the gadget. Should be one of `blue`, `red`, `yellow`, `green`, `cyan`, `purple`, `gray`, or `white`. */
color?: string;
position?: DashboardGadgetPosition;
}