mirror of
https://github.com/tinyauthapp/tinyauth.git
synced 2026-08-29 01:03:33 +08:00
8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
import { z } from "zod";
|
|
|
|
export const loginSchema = z.object({
|
|
username: z.string(),
|
|
password: z.string(),
|
|
});
|
|
|
|
export type LoginFormValues = z.infer<typeof loginSchema>; |