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) 241 B
/** Identifiers for a project. */ export interface ProjectIdentifiers { /** The URL of the created project. */ self: string; /** The ID of the created project. */ id: number; /** The key of the created project. */ key: string; }