Hacker News new | ask | show | jobs
by hauntsaninja 184 days ago
Unknown has the exact same type system semantics as Any.

Unknown is a pyright specific term for inferred Any that is used as the basis for enabling additional diagnostics prohibiting gradual typing.

Notably, this is quite different from TypeScript’s unknown, which is type safe.

1 comments

This was confusing me, thanks.