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 (8 loc) 253 B
import type { FieldMetadata } from './fieldMetadata'; /** The metadata describing a tab in an issue screen. */ export interface TabMetadata { /** The name of the tab. */ name: string; /** The fields within the tab */ fields: FieldMetadata[]; }