Filip Kalný
Filip Kalný
> Hey @filkalny-thimble, why do you prefer unknown instead of any? `unknown` ensures type safety by not being assignable before having its type narrowed. Consider the following example, which will...
> @filkalny-thimble I see. OpenAPI has a concept of [Any Type schema](https://swagger.io/docs/specification/data-models/data-types/#any) that matches any data type. Would you also expect Any Type schema to result in `unknown` in TypeScript?...
> @filkalny-thimble Great, I was hoping that would be the answer. I think we have two approaches towards handling these cases, `any` and `unknown`. I believe I've seen libraries move...