I'm pretty sure this exists, but I haven't been able to find anything about it despite some digging. Say that I have a zod Schema like such:
const Person = zod.object({
name: z.string().default(''),
age: z.number().nullable();
});
Is there a way to create something like this:
const InstancePerson = {
name: '',
age: null
}
from the zod Schema?