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.

12 lines (10 loc) 269 B
import type { SimpleLink } from './simpleLink'; /** Details a link group, which defines issue operations. */ export interface LinkGroup { groups?: LinkGroup[]; header?: SimpleLink; id?: string; links?: SimpleLink[]; styleClass?: string; weight?: number; }