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 (9 loc) 265 B
/** The trigger configuration associated with a workflow. */ export interface WorkflowTrigger { /** The ID of the trigger. */ id?: string; /** The parameters of the trigger. */ parameters: unknown; /** The rule key of the trigger. */ ruleKey: string; }