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 (8 loc) 218 B
import type { Avatar } from './avatar'; /** Details about system and custom avatars. */ export interface Avatars { /** Custom avatars list. */ custom: Avatar[]; /** System avatars list. */ system: Avatar[]; }