@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) • 402 B
text/typescript
export interface FindUserKeysByQuery {
/** The search query. */
query: string;
/** 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.
*
* @deprecated Use `maxResult` instead.
*/
maxResults?: number;
/** The maximum number of items to return per page. */
maxResult?: number;
}