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.

8 lines (7 loc) 268 B
/** The explicit association between issue types and a workflow in a workflow scheme. */ export interface WorkflowSchemeAssociation { /** The issue types assigned to the workflow. */ issueTypeIds: string[]; /** The ID of the workflow. */ workflowId: string; }