AdelieStack/src/lib/dtos/login/login.dto.ts

8 lines
142 B
TypeScript
Raw Normal View History

2024-12-31 22:43:09 +00:00
import { z } from 'zod';
export const loginDto = z.object({
email: z.string().email()
});
export type LoginDto = z.infer<typeof loginDto>;