v1.1.1
What's Changed
- put jsdoc comments on their own lines by @RobinTail in #15
using this schema:
z.object({
name: z.string().describe('first name')
})
previous version printed this:
type User = {
/** first name */ name: string
}
this version prints this:
type User = {
/** first name */
name: string
}