import { z } from "zod"; export const studyActivitySchema = z.object({ type: z.enum(["FLASHCARD", "QUIZ_QUESTION"]), }); export type StudyActivityType = z.infer["type"];