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.

17 lines (15 loc) 574 B
import type { Date } from './date'; import type { Duration } from './duration'; export interface SlaInformationOngoingCycle { startTime?: Date; breachTime?: Date; /** Indicates whether the SLA has been breached (true) or not (false). */ breached?: boolean; /** Indicates whether the SLA is paused (true) or not (false). */ paused?: boolean; /** Indicates whether the SLA it timed during calendared working hours only (true) or not (false). */ withinCalendarHours?: boolean; goalDuration?: Duration; elapsedTime?: Duration; remainingTime?: Duration; }