You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use unknown rather than any for BaseController state
The BaseController state now uses `unknown` rather than `any` as the
type for state properties. `unknown` is more type-safe than `any` in
cases like this where we don't know what type to expect. See here for
details [1].
This was suggested by @rekmarks during review of #362 [2].
[1]: microsoft/TypeScript#24439
[2]: #362 (comment)
0 commit comments