2
0
Files
cal/calcom/packages/trpc/server/routers/viewer/auth/resendVerifyEmail.schema.ts
2024-08-09 00:39:27 +02:00

10 lines
213 B
TypeScript

import { z } from "zod";
export const ZResendVerifyEmailSchema = z
.object({
email: z.string().email(),
})
.optional();
export type TResendVerifyEmailSchema = z.infer<typeof ZResendVerifyEmailSchema>;