export const RATING_TYPES = {
  DRIVER_TO_CUSTOMER: "driver_to_customer",
  CUSTOMER_TO_DRIVER: "customer_to_driver",
  DRIVER_TO_DISPATCHER: "driver_to_dispatcher",
  DISPATCHER_TO_DRIVER: "dispatcher_to_driver",
  DISPATCHER_TO_CUSTOMER: "dispatcher_to_customer",
  CUSTOMER_TO_DISPATCHER: "customer_to_dispatcher",
} as const

export type RatingType = (typeof RATING_TYPES)[keyof typeof RATING_TYPES]
