2
0
Files
cal/calcom/packages/trpc/server/routers/viewer/workflows/sendVerificationCode.schema.ts

8 lines
214 B
TypeScript
Raw Permalink Normal View History

2024-08-09 00:39:27 +02:00
import { z } from "zod";
export const ZSendVerificationCodeInputSchema = z.object({
phoneNumber: z.string(),
});
export type TSendVerificationCodeInputSchema = z.infer<typeof ZSendVerificationCodeInputSchema>;