@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.
11 lines (10 loc) • 548 B
text/typescript
export interface GetCurrentUser {
/**
* Use [expand](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#expansion) to include additional
* information about user in the response. This parameter accepts a comma-separated list. Expand options include:
*
* - `groups` Returns all groups, including nested groups, the user belongs to.
* - `applicationRoles` Returns the application roles the user is assigned to.
*/
expand?: 'groups' | 'applicationRoles' | ('groups' | 'applicationRoles')[] | string | string[];
}