vkashti / types / event.ts
event.ts
Raw
export type Event = {
  id: string;
  title: string;
  description: string;
  from_date: string;
  to_date: string;
  price: number;
};