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) 299 B
import type { Avatar } from './avatar'; /** List of project avatars. */ export interface ProjectAvatars { /** List of avatars included with Jira. These avatars cannot be deleted. */ system?: Avatar[]; /** List of avatars added to Jira. These avatars may be deleted. */ custom?: Avatar[]; }