Created
March 6, 2025 15:50
-
-
Save KleaTech/c7e5ab7d55ffeecb7365fb8e86326870 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type ExtendSubtype<Type, Subtype, NewProps> = { | |
[K in keyof Type]: Type[K] extends Subtype | |
? Type[K] & NewProps | |
: Type[K] extends object | |
? ExtendSubtype<Type[K], Subtype, NewProps> | |
: Type[K]; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment