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) 292 B
import type { WorkflowScheme } from './workflowScheme'; /** A workflow scheme along with a list of projects that use it. */ export interface WorkflowSchemeAssociations { /** The list of projects that use the workflow scheme. */ projectIds: string[]; workflowScheme?: WorkflowScheme; }