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 { id?: string; styleClass?: string; header?: SimpleLink; weight?: number; links?: SimpleLink[]; groups?: LinkGroup[]; }