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.

12 lines (10 loc) 291 B
import type { Content } from './content'; import type { Source } from './source'; export interface Article { /** Title of the article. */ title?: string; /** Excerpt of the article which matches the given query string. */ excerpt?: string; source?: Source; content?: Content; }