UNPKG

@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.

16 lines (15 loc) 666 B
/** Time tracking details. */ export interface TimeTrackingDetails { /** The original estimate of time needed for this issue in readable format. */ originalEstimate?: string; /** The original estimate of time needed for this issue in seconds. */ originalEstimateSeconds?: number; /** The remaining estimate of time needed for this issue in readable format. */ remainingEstimate?: string; /** The remaining estimate of time needed for this issue in seconds. */ remainingEstimateSeconds?: number; /** Time worked on this issue in readable format. */ timeSpent?: string; /** Time worked on this issue in seconds. */ timeSpentSeconds?: number; }