@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.
15 lines (13 loc) • 325 B
text/typescript
import type { Icon } from './icon';
import type { Status } from './status';
/** The linked item. */
export interface RemoteObject {
icon?: Icon;
status?: Status;
/** The summary details of the item. */
summary?: string;
/** The title of the item. */
title: string;
/** The URL of the item. */
url: string;
}