aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/lib/models/internal/UnwrappedEntryDateTime.ts
blob: da71bc9ff4594126fac3859ab6b83c819ad83c81 (plain) (blame)
1
2
3
4
5
6
7
8
9
import type { Temporal } from "temporal-polyfill";

export interface UnwrappedEntryDateTime {
    start_date: Temporal.PlainDate,
    stop_date: Temporal.PlainDate,
    start_time: Temporal.PlainTime,
    stop_time: Temporal.PlainTime,
    duration: Temporal.Duration,
}