cal.pub0.org/packages/trpc/server/routers/viewer/workflows/sendVerificationCode.schema.ts

8 lines
214 B
TypeScript

import { z } from "zod";
export const ZSendVerificationCodeInputSchema = z.object({
phoneNumber: z.string(),
});
export type TSendVerificationCodeInputSchema = z.infer<typeof ZSendVerificationCodeInputSchema>;