8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
import { z } from "zod"
|
|
|
|
import { breakfastEnum } from "@/types/enums/breakfast"
|
|
|
|
export const breakfastSchema = z.object({
|
|
breakfast: z.nativeEnum(breakfastEnum),
|
|
})
|