-
Notifications
You must be signed in to change notification settings - Fork 12.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add the Omit helper type #30552
Add the Omit helper type #30552
Conversation
@typescript-bot run dt |
Heya @DanielRosenwasser, I've started to run the Definitely Typed test suite on this PR at 53e76b3. You can monitor the build here. It should now contribute to this PR's status checks. |
The only breakages on DefinitelyTyped seem to be
And those all really come from |
A fix is now out to DefinitelyTyped's I used BigTSQuery to partially assess the breakage with the following query
BigTSQuery isn't fully up to date (@urish out of curiosity, how recent is the dataset?), but we saw three distinct results:
Also: |
We discussed this at #30738 and believe that the breakage can be easily communicated and is more limited than we initially anticipated. |
Keys are not limited to |
🤔 |
|
Note, if you feel that shouldn't be the case, I'd encourage you to open up a separate issue to discuss it. |
@DanielRosenwasser the BigTSQuery dataset has last been updated around June 2018. If you find it useful, I can spend some time updating it |
Can |
@felixfbecker the definition was intentional. |
But how a bout the case of
As you can see, these 2 helper types are somehow complimentary. Looks pretty nature and intuitive when we use them together. How come When we make comparison, compare |
I've ran into a few bugs which would have been caught if |
Fixes #30455.