Leozinn - i'm compiled my project, and interfac...
i'm compiled my project, and interfaces.d.ts return this...
How am I going to use typing in my project, if it is like a zod object?

3 Replies
What's the actual question here? Your project will need to depend on
zod
because you're using zod
, so this will work. Or maybe you want to export just the types?
(just the types will still depend on Zod)Yeah, I just wanted to use the types, but I think that was my mistake. Why not do a z.infer and export the types directly...
Yeah (btw, I'd use
z.output
instead of z.infer
just to make sure you get the output type which will capture any transformations, defaults, etc)