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) 513 B
import type { IssueCommentListRequest } from '../models'; export interface GetCommentsByIds extends IssueCommentListRequest { /** * Use [expand](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#expansion) to include additional * information about comments in the response. This parameter accepts a comma-separated list. Expand options include: * * `renderedBody` Returns the comment body rendered in HTML. `properties` Returns the comment's properties. */ expand?: string; }