SW-65 Moved type to /types

This commit is contained in:
Hrishikesh Vaipurkar
2024-08-01 16:11:05 +02:00
parent 23c97db987
commit 1dfcd144fb
4 changed files with 19 additions and 8 deletions

View File

@@ -0,0 +1,5 @@
import { z } from "zod"
import { bookingWidgetSchema } from "@/components/BookingWidget/schema"
export type BookingWidgetSchema = z.infer<typeof bookingWidgetSchema>