Skip to content
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

Omit enhancement #57481

Closed
Abdel-Monaam-Aouini opened this issue Feb 22, 2024 · 4 comments
Closed

Omit enhancement #57481

Abdel-Monaam-Aouini opened this issue Feb 22, 2024 · 4 comments

Comments

@Abdel-Monaam-Aouini
Copy link

Abdel-Monaam-Aouini commented Feb 22, 2024

Here's an enhanced version of the Omit type that uses the type parameter T instead of any to ensure type safety:

type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;

In this version, K extends keyof T, meaning K can only be a key that exists within the type T. This ensures that you cannot omit a key that doesn't belong to the object type T, thereby preventing errors when selecting keys to omit.

image
image

@MartinJohns
Copy link
Contributor

You might want to modify your issue, because right now it's absolutely unclear what you're suggesting or asking for. I suggest to use the "Feature Request" issue template.

@Abdel-Monaam-Aouini
Copy link
Author

You might want to modify your issue, because right now it's absolutely unclear what you're suggesting or asking for. I suggest to use the "Feature Request" issue template.

check now :)

@MartinJohns
Copy link
Contributor

This was suggested numerous times already and has been declined, e.g. #30825. That's also why the issue templates ask for used search terms to find existing issues (at least the bug report one does).

@fatcerberus
Copy link

Also see #54451

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants