Skip to content

Instantly share code, notes, and snippets.

@bpander
Created February 28, 2022 21:42
Show Gist options
  • Save bpander/b8bb129c13aa545c08f3f630328938e8 to your computer and use it in GitHub Desktop.
Save bpander/b8bb129c13aa545c08f3f630328938e8 to your computer and use it in GitHub Desktop.
export type Overlap<T, U> = { [K in Extract<keyof T, keyof U>]: U[K] | T[K] };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment