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) 293 B
import type { IssueTypeScheme } from './issueTypeScheme'; /** Issue type scheme with a list of the projects that use it. */ export interface IssueTypeSchemeProjects { issueTypeScheme?: IssueTypeScheme; /** The IDs of the projects using the issue type scheme. */ projectIds: string[]; }