UNPKG

@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 (9 loc) 284 B
export interface HierarchyLevel { /** The name of this hierarchy level. */ name?: string; /** The level of this item in the hierarchy. */ level?: number; /** The issue types available in this hierarchy level. */ issueTypeIds?: number[]; globalHierarchyLevel?: string; }