We are seeking to streamline the interface creation process by utilizing shorthand for properties labeled from Monday
through Sunday
, each with identical sub-properties.
interface Day {
start: number
end: number
}
interface Schedule {
Monday: Day
Tuesday: Day
Wednesday: Day
Thursday: Day
Friday: Day
Saturday: Day
Sunday: Day
closed: string[]
}