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.

15 lines (13 loc) 362 B
import type { Scope } from './scope'; import type { ScreenableTab } from './screenableTab'; /** A screen with tab details. */ export interface ScreenWithTab { /** The description of the screen. */ description?: string; /** The ID of the screen. */ id?: number; /** The name of the screen. */ name?: string; scope?: Scope; tab?: ScreenableTab; }