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) 264 B
import type { ProjectId } from './projectId'; /** The scope of the status. */ export interface StatusScope { /** The scope of the status. `GLOBAL` for company-managed projects and `PROJECT` for team-managed projects. */ type: string; project?: ProjectId; }