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) 331 B
import type { WorkflowProjectIssueTypeUsage } from './workflowProjectIssueTypeUsage'; /** A page of issue types. */ export interface WorkflowProjectIssueTypeUsagePage { /** Token for the next page of issue type usages. */ nextPageToken?: string; /** The list of issue types. */ values?: WorkflowProjectIssueTypeUsage[]; }