@kody/jira
src/list-comments.js
11 lines · 326 B · JavaScriptimport { 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)
}