@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) • 378 B
text/typescript
import type { PrioritySchemeWithPaginatedPrioritiesAndProjects } from './prioritySchemeWithPaginatedPrioritiesAndProjects';
import type { TaskProgressNode } from './taskProgressNode';
/** Details of the updated priority scheme. */
export interface UpdatePrioritySchemeResponse {
priorityScheme?: PrioritySchemeWithPaginatedPrioritiesAndProjects;
task?: TaskProgressNode;
}