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.

9 lines (8 loc) 267 B
export interface GetTeamResponseForPage { /** The team ID. */ id: string; /** The team name. This is returned if the type is "PlanOnly". */ name?: string; /** The team type. This is "PlanOnly" or "Atlassian". */ type: 'PlanOnly' | 'Atlassian' | string; }