8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
|
|
import { z } from 'zod';
|
||
|
|
|
||
|
|
export const ZSendMailMutationSchema = z.object({
|
||
|
|
email: z.string().min(1).email(),
|
||
|
|
});
|
||
|
|
|
||
|
|
export type TSendMailMutationSchema = z.infer<typeof ZSendMailMutationSchema>;
|