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