Kevin O'Neill
Results
1
issues of
Kevin O'Neill
Is it possible to use toZod with literals? ``` type A = { __type: "a"; a: string; }; const schema: toZod = z.object({ __type: z.literal("a"), a: z.string(), }); ``` the...