mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 13:25:18 +00:00
7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
import { z } from "zod"
|
|
|
|
export const userFormSchema = z.object({
|
|
name: z.string().max(128).optional(),
|
|
avatar: z.string().optional(),
|
|
})
|