@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.
11 lines (9 loc) • 372 B
text/typescript
import type { WorkflowProjectIssueTypeUsagePage } from './workflowProjectIssueTypeUsagePage';
/** Issue types associated with the workflow for a project. */
export interface WorkflowProjectIssueTypeUsageDTO {
issueTypes?: WorkflowProjectIssueTypeUsagePage;
/** The ID of the project. */
projectId?: string;
/** The ID of the workflow. */
workflowId?: string;
}