Schema
import { x } from 'unhoax'const schema = x.object({ name: x.string })x.TypeOf<typeof schema> // { name: string } Copy
import { x } from 'unhoax'const schema = x.object({ name: x.string })x.TypeOf<typeof schema> // { name: string }
See
Schema
Example