@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 (11 loc) • 443 B
text/typescript
import type { Comment } from '../models';
export interface AddComment extends Comment {
/** The ID or key of the issue. */
issueIdOrKey: string;
/**
* 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 `renderedBody`, which returns the comment body
* rendered in HTML.
*/
expand?: string;
}