@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.
12 lines (10 loc) • 307 B
text/typescript
import type { Icon } from './icon';
/** The status of the item. */
export interface Status {
/**
* Whether the item is resolved. If set to "true", the link to the issue is displayed in a strikethrough font,
* otherwise the link displays in normal font.
*/
resolved?: boolean;
icon?: Icon;
}