@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 (10 loc) • 319 B
text/typescript
export interface GetWorkflowProjectIssueTypeUsages {
/** The workflow ID */
workflowId: string;
/** The project ID */
projectId: number;
/** The cursor for pagination */
nextPageToken?: string;
/** The maximum number of results to return. Must be an integer between 1 and 200. */
maxResults?: number;
}