Skip to content

v1.1.1

Compare
Choose a tag to compare
@sachinraja sachinraja released this 12 Jun 05:51
· 54 commits to main since this release
8e053a3

What's Changed

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
}