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