'Omit' should alias a distinct mapped type (for display purposes)
See original GitHub issueToday, Omit
will expand to Pick<Exclude<...>, ...>
in quick info, error messages, etc. which is gross.
By defining Omit
as its own conditional type, we can get a slightly nicer display, though it will introduce duplication of code between the two helpers.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:5
- Comments:8 (8 by maintainers)
Top Results From Across the Web
Rob Palmer on Twitter: "My favourite feature in the TypeScript 4.2 ...
It retains abbreviated names for some types, rather than showing you the full ... 'Omit' should alias a distinct mapped type (for display...
Read more >Choosing between alias and non-alias records
Alias records let you route traffic to selected AWS resources, such as CloudFront distributions and Amazon S3 buckets. They also let you route...
Read more >TypeORM select alias of column name - mysql - Stack Overflow
i saw the column name option but was thinking what to do if you need to send two different name in two different...
Read more >mod_alias - Apache HTTP Server Version 2.4
The Alias directive allows documents to be stored in the local filesystem other than under the DocumentRoot . URLs with a (%-decoded) path...
Read more >Create Aliases to Rename Members in the View - Tableau Help
Aliases can be created for the members of discrete dimensions only. They cannot be created for continuous dimensions, dates, or measures. Create an...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The following type
now maintains modifiers thanks to @ahejlsberg’s pull request at #40633.
For TS 4.0 and older, you can use @Jack-Works’s https://github.com/type-challenges/type-challenges/issues/141.