Skip to content

Instantly share code, notes, and snippets.

@KleaTech
Created March 6, 2025 15:50
Show Gist options
  • Save KleaTech/c7e5ab7d55ffeecb7365fb8e86326870 to your computer and use it in GitHub Desktop.
Save KleaTech/c7e5ab7d55ffeecb7365fb8e86326870 to your computer and use it in GitHub Desktop.
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