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.

14 lines (12 loc) 394 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; watchers?: NestedResponse; }