UNPKG

@tmlmobilidade/types

Version:
13 lines (12 loc) 301 B
import { z } from 'zod'; export declare const LoginDtoSchema: z.ZodObject<{ email: z.ZodString; password: z.ZodString; }, "strip", z.ZodTypeAny, { email: string; password: string; }, { email: string; password: string; }>; export type LoginDto = z.infer<typeof LoginDtoSchema>;