cal.pub0.org/packages/trpc/server/routers/viewer/auth/verifyPassword.schema.ts

8 lines
198 B
TypeScript

import { z } from "zod";
export const ZVerifyPasswordInputSchema = z.object({
passwordInput: z.string(),
});
export type TVerifyPasswordInputSchema = z.infer<typeof ZVerifyPasswordInputSchema>;