generated from pascalmartineau/wp-skeleton
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 6m3s
9 lines
278 B
TypeScript
9 lines
278 B
TypeScript
import * as z from "zod";
|
|
|
|
export const loginSchema = z.object({
|
|
email: z.email("Courriel invalide"),
|
|
password: z.string("Veuillez saisir votre mot de passe"),
|
|
});
|
|
export type LoginInput = z.input<typeof loginSchema>;
|
|
export type LoginOutput = z.output<typeof loginSchema>;
|