@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) • 461 B
text/typescript
export interface GetIdsOfWorklogsModifiedSince {
/** The date and time, as a UNIX timestamp in milliseconds, after which updated worklogs are returned. */
since?: number;
/**
* Use [expand](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#expansion) to include additional
* information about worklogs in the response. This parameter accepts `properties` that returns the properties of each
* worklog.
*/
expand?: string;
}