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.

15 lines (13 loc) 325 B
import type { Icon } from './icon'; import type { Status } from './status'; /** The linked item. */ export interface RemoteObject { /** The URL of the item. */ url: string; /** The title of the item. */ title: string; /** The summary details of the item. */ summary?: string; icon?: Icon; status?: Status; }