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.

8 lines (7 loc) 277 B
/** Details of a screen. */ export interface ScreenDetails { /** The name of the screen. The name must be unique. The maximum length is 255 characters. */ name: string; /** The description of the screen. The maximum length is 255 characters. */ description?: string; }