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) 348 B
export interface GetProjectRole { /** The project ID or project key (case sensitive). */ projectIdOrKey: string | number; /** * The ID of the project role. Use [Get all project roles](#api-rest-api-2-role-get) to get a list of project role * IDs. */ id: number; /** Exclude inactive users. */ excludeInactiveUsers?: boolean; }