Day.ts
1 import type { Restaurant } from "~/models"; 2 3 /** 4 * Each day of the week. 5 * 6 * Values are very important since they match {@link Restaurant|restaurants'} `opening` day index. 7 */ 8 export enum Day { 9 Friday = 4, 10 Monday = 0, 11 Saturday = 5, 12 Sunday = 6, 13 Thursday = 3, 14 Tuesday = 1, 15 Wednesday = 2 16 }