Hacker News new | ask | show | jobs
by callumgare 234 days ago
How would that work? My understanding is that satisfies doesn’t change anythings type, it just provides an additional type validation check.
1 comments

I believe satisfies will narrow the type const infers. It won't lose any information, so you can check it satisfies a broader type without stopping it being used as a narrower one, but it will narrow down the inference if given (but you can of course widen it back out with an explicit typing).