6 lines
220 B
TypeScript
6 lines
220 B
TypeScript
|
import { z } from "zod";
|
||
|
|
||
|
export const ZGetBookingAttendeesInputSchema = z.object({ seatReferenceUid: z.string().uuid() });
|
||
|
|
||
|
export type TGetBookingAttendeesInputSchema = z.infer<typeof ZGetBookingAttendeesInputSchema>;
|