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.

9 lines (7 loc) 338 B
import type { IssueTypeScreenScheme } from './issueTypeScreenScheme'; /** Issue type screen scheme with a list of the projects that use it. */ export interface IssueTypeScreenSchemesProjects { issueTypeScreenScheme?: IssueTypeScreenScheme; /** The IDs of the projects using the issue type screen scheme. */ projectIds: string[]; }