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) 186 B
/** Details about a licensed Jira application. */ export interface LicensedApplication { /** The ID of the application. */ id: string; /** The licensing plan. */ plan: string; }