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.

8 lines (7 loc) 245 B
/** Represents a usage of an entity by a project ID and related issue type IDs. */ export interface SimpleUsage { /** The issue type IDs for the usage. */ issueTypeIds: string[]; /** The project ID for the usage. */ projectId: string; }