@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 (9 loc) • 402 B
text/typescript
import type { WorklogIdsRequest } from '../models';
export interface GetWorklogsForIds extends WorklogIdsRequest {
/**
* Use [expand](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#expansion) to include additional
* information about worklogs in the response. This parameter accepts `properties` that returns the properties of each
* worklog.
*/
expand?: string;
}