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.

10 lines (8 loc) 321 B
import type { AvailableWorkflowTriggerTypes } from './availableWorkflowTriggerTypes'; /** The trigger rules available. */ export interface AvailableWorkflowTriggers { /** The list of available trigger types. */ availableTypes: AvailableWorkflowTriggerTypes[]; /** The rule key of the rule. */ ruleKey: string; }