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.

13 lines (11 loc) 261 B
import type { Scope } from './scope'; /** A screen. */ export interface Screen { /** The description of the screen. */ description?: string; /** The ID of the screen. */ id?: number; /** The name of the screen. */ name?: string; scope?: Scope; }