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) 329 B
import type { WorkflowMetadataRestModel } from './workflowMetadataRestModel'; /** The workflow metadata and issue type IDs which use this workflow. */ export interface WorkflowMetadataAndIssueTypeRestModel { /** The list of issue type IDs for the mapping. */ issueTypeIds: string[]; workflow: WorkflowMetadataRestModel; }