Skip to content

Instantly share code, notes, and snippets.

@TotooriaHyperion
Created October 20, 2020 09:59
Show Gist options
  • Save TotooriaHyperion/78f0ccdce32b51c15f37e44656d47b4f to your computer and use it in GitHub Desktop.
Save TotooriaHyperion/78f0ccdce32b51c15f37e44656d47b4f to your computer and use it in GitHub Desktop.
PartPartial
type PartPartial<T, PartielKeys extends keyof T> = Partial<T> &
{
[K in Exclude<keyof T, PartielKeys>]: T[K];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment