hububb-models 1.0.83 → 1.0.84
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,7 @@
|
|
1
1
|
import { infer, z } from "zod";
|
2
|
-
import { ReservationSchema, reservationCreateSchema } from "../schemas/reservation";
|
2
|
+
import { ReservationSchema, paymentCreateSchema, reservationCreateSchema } from "../schemas/reservation";
|
3
3
|
export type Reservation = z.infer<typeof ReservationSchema>;
|
4
4
|
export interface ReservationCreateSchema extends infer<typeof reservationCreateSchema> {
|
5
5
|
}
|
6
|
+
export interface PaymentCreateSchema extends infer<typeof paymentCreateSchema> {
|
7
|
+
}
|