UNPKG

@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) 365 B
import type { NestedResponse } from './nestedResponse'; /** Details about a created issue or subtask. */ export interface CreatedIssue { /** The ID of the created issue or subtask. */ id: string; /** The key of the created issue or subtask. */ key: string; /** The URL of the created issue or subtask. */ self: string; transition?: NestedResponse; }