Skip to content

Built for people who want to own their automations. Join the waitlist for an invite.

Package listing

@kody/jira

src/list-comments.js

11 lines · 326 B · JavaScript
import { listComments } from './jira.js'

/**
 * List comments on a Jira issue.
 * @example
 * import listComments from 'kody:@kody/jira/list-comments'
 * const result = await listComments({ issueIdOrKey: 'PROJ-123' })
 */
export default async function listCommentsEntrypoint(input = {}) {
	return await listComments(input)
}