@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.
13 lines (12 loc) • 614 B
text/typescript
/** The application the linked item is in. */
export interface Application {
/**
* The name of the application. Used in conjunction with the (remote) object icon title to display a tooltip for the
* link's icon. The tooltip takes the format "[application name] icon title". Blank items are excluded from the
* tooltip title. If both items are blank, the icon tooltop displays as "Web Link". Grouping and sorting of links may
* place links without an application name last.
*/
name?: string;
/** The name-spaced type of the application, used by registered rendering apps. */
type?: string;
}