@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) • 346 B
text/typescript
import type { ProjectIssueTypesHierarchyLevel } from './projectIssueTypesHierarchyLevel';
/** The hierarchy of issue types within a project. */
export interface ProjectIssueTypeHierarchy {
/** The ID of the project. */
projectId?: number;
/** Details of an issue type hierarchy level. */
hierarchy?: ProjectIssueTypesHierarchyLevel[];
}