mirror of
https://github.com/BradNut/TofuStack
synced 2025-09-08 17:40:26 +00:00
6 lines
151 B
TypeScript
6 lines
151 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const verifyEmailDto = z.object({
|
|
token: z.string()
|
|
});
|
|
export type VerifyEmailDto = z.infer<typeof verifyEmailDto>;
|