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) 198 B
/** Properties that identify a workflow. */ export interface WorkflowId { /** The name of the workflow. */ name: string; /** Whether the workflow is in the draft state. */ draft: boolean; }