@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.
12 lines (10 loc) • 388 B
text/typescript
import type { IssueTypeInfo } from './issueTypeInfo';
/** Details of an issue type hierarchy level. */
export interface ProjectIssueTypesHierarchyLevel {
/** The level of the issue type hierarchy level. */
level?: number;
/** The name of the issue type hierarchy level. */
name?: string;
/** The list of issue types in the hierarchy level. */
issueTypes?: IssueTypeInfo[];
}