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) 214 B
/** A group label. */ export interface GroupLabel { /** The group label name. */ text?: string; /** The title of the group label. */ title?: string; /** The type of the group label. */ type?: string; }