Skip to content

Instantly share code, notes, and snippets.

@0x414c
Last active August 14, 2018 14:06
Show Gist options
  • Save 0x414c/cd0c8c14cea3fa2104929a4c9ddcddd1 to your computer and use it in GitHub Desktop.
Save 0x414c/cd0c8c14cea3fa2104929a4c9ddcddd1 to your computer and use it in GitHub Desktop.
type Defaultize<T, Defaults> =
& Partial<Pick<T, Extract<keyof T, keyof Defaults>>>
& Pick<T, Exclude<keyof T, keyof Defaults>>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment