@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.
14 lines (13 loc) • 361 B
text/typescript
/** Details of an issue resolution. */
export interface Resolution {
/** The URL of the issue resolution. */
self?: string;
/** The ID of the issue resolution. */
id?: string;
/** The description of the issue resolution. */
description?: string;
/** The name of the issue resolution. */
name?: string;
iconUrl?: string;
default?: boolean;
}