@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 (11 loc) • 426 B
text/typescript
/** Details of the time tracking configuration. */
export interface TimeTrackingConfiguration {
/** The number of hours in a working day. */
workingHoursPerDay: number;
/** The number of days in a working week. */
workingDaysPerWeek: number;
/** The format that will appear on an issue's _Time Spent_ field. */
timeFormat: string;
/** The default unit of time applied to logged time. */
defaultUnit: string;
}