© 2026 Hedgehog Software, LLC
type FormData = { id: string meta: any }
const FormDataType = type({ id: 'string', meta: type('object').as<any>(), })
z.any(); // inferred type: 'any'
const FormDataType = type({ id: 'string', meta: 'any', })