UNPKG

gaunt-sloth-assistant

Version:

[![Tests and Lint](https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant/actions/workflows/unit-tests.yml) [![Integration Tests](https://github.co

12 lines (11 loc) 419 B
import type { JiraConfig } from './types.js'; /** * Gets Jira issue using Atlassian REST API v3 with Personal Access Token * * TODO we need to figure out how would this work with public jira. * * @param config Jira configuration * @param issueId Jira issue ID * @returns Jira issue content */ export declare function get(config: Partial<JiraConfig> | null, issueId: string | undefined): Promise<string | null>;