aboutsummaryrefslogtreecommitdiffstats
path: root/apps/kit/src/lib/models/UnwrappedEntryDateTime.ts
blob: d614f9138db724edfa4b48b31c052f1989389d75 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { 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,
}