twitch-clone/frontend/src/schemas/user/enable-totp.schema.ts

8 lines
172 B
TypeScript

import { z } from 'zod';
export const enableTotpSchema = z.object({
pin: z.string().length(6),
});
export type TypeEnableTotpSchema = z.infer<typeof enableTotpSchema>;