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