8 lines
172 B
TypeScript
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>;
|