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.

14 lines (12 loc) 371 B
import type { Date } from './date'; import type { Duration } from './duration'; export interface SlaInformationCompletedCycle { startTime?: Date; stopTime?: Date; breachTime?: Date; /** Indicates if the SLA (duration) was exceeded (true) or not (false). */ breached?: boolean; goalDuration?: Duration; elapsedTime?: Duration; remainingTime?: Duration; }