/ src / models / Moment.ts
Moment.ts
 1  import type { Restaurant } from "~/models";
 2  
 3  /**
 4   * Each moment of the day.
 5   */
 6  export enum Moment {
 7    Evening = "soir",
 8    Lunch = "midi",
 9    Morning = "matin"
10  }