@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.
12 lines (10 loc) • 337 B
text/typescript
import type { EntityProperty } from './entityProperty';
/** Details of a changed worklog. */
export interface ChangedWorklog {
/** Details of properties associated with the change. */
properties?: EntityProperty[];
/** The datetime of the change. */
updatedTime?: number;
/** The ID of the worklog. */
worklogId?: number;
}