I would like the output to include default types, such as when you have a schema like this: ```ts z.object({ thing: z.string().default("hello"); }) // => type Schema = { /** @default "hello" */ thing: string; } ```
I would like the output to include default types, such as when you have a schema like this: