/** * JS representation of a TimeOnly value (maps to TimeOnly in C#) */ export type TimeOnly = `${number}:${number}:${number}`; /** * JS representation of a DateOnly value (maps to DateOnly in C#) */ export type DateOnly = `${number}-${number}-${number}`;