We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
PartialExcept<T,K>
Basically this
type _PartialExcept<T, K extends keyof T> = Partial<Omit<T, K>> & Required<Pick<T, K>>;
Where the type T gets passed as Partial except for one property K, where K is required in that particular type
Needed.
No response
The text was updated successfully, but these errors were encountered:
feat(#135): add PartialExcept<T,P>
PartialExcept<T,P>
e84cc44
feat(#135): add PartialExcept<T,K> (#136)
a77b1f0
* chore: purge deps * feat(#135): add `PartialExcept<T,P>` * chore(release): v1.39.0
No branches or pull requests
New feature motivation
Basically this
Where the type T gets passed as Partial except for one property K, where K is required in that particular type
New feature description
Needed.
New feature implementation
No response
The text was updated successfully, but these errors were encountered: