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.

10 lines (9 loc) 254 B
/** Details of the status being created. */ export interface StatusCreate { /** The name of the status. */ name: string; /** The category of the status. */ statusCategory: string; /** The description of the status. */ description?: string; }