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 (6 loc) 235 B
import type { LicensedApplication } from './licensedApplication'; /** Details about a license for the Jira instance. */ export interface License { /** The applications under this license. */ applications: LicensedApplication[]; }