Skip to content

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

Package listing

@kody/jira

src/get-issue.js

11 lines · 304 B · JavaScript
import { getIssue } from './jira.js'

/**
 * Read one Jira issue by key or id.
 * @example
 * import getIssue from 'kody:@kody/jira/get-issue'
 * const issue = await getIssue({ issueIdOrKey: 'PROJ-123' })
 */
export default async function getIssueEntrypoint(input = {}) {
	return await getIssue(input)
}