mirror of
https://github.com/documenso/documenso.git
synced 2025-11-15 17:21:41 +10:00
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>;
|