vkashti / types / quiz.ts
quiz.ts
Raw
export type Quiz = {
  id: number;
  name: string | null;
  date: string | null;
  url: string | null;
  created_at: string;
}