@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.
15 lines (14 loc) • 557 B
text/typescript
export interface GetUiModifications {
/** The index of the first item to return in a page of results (page offset). */
startAt?: number;
/** The maximum number of items to return per page. */
maxResults?: number;
/**
* Use expand to include additional information in the response. This parameter accepts a comma-separated list. Expand
* options include:
*
* - `data` Returns UI modification data.
* - `contexts` Returns UI modification contexts.
*/
expand?: 'data' | 'contexts' | ('data' | 'contexts')[] | string | string[];
}