@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) • 376 B
text/typescript
export interface GetProjectIssueTypeUsagesForStatus {
/** The statusId to fetch issue type usages for */
statusId: string;
/** The projectId to fetch issue type usages for */
projectId: string;
/** The cursor for pagination */
nextPageToken?: string;
/** The maximum number of results to return. Must be an integer between 1 and 200. */
maxResults?: number;
}