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.

12 lines (11 loc) 320 B
/** A project category. */ export interface UpdatedProjectCategory { /** The name of the project category. */ description?: string; /** The ID of the project category. */ id?: string; /** The description of the project category. */ name?: string; /** The URL of the project category. */ self?: string; }