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) 240 B
/** Details of an issue resolution. */ export interface CreateResolutionDetails { /** The name of the resolution. Must be unique (case-insensitive). */ name: string; /** The description of the resolution. */ description?: string; }