Skip to content

Instantly share code, notes, and snippets.

@kring
Created March 20, 2019 11:39
Show Gist options
  • Save kring/72154056740251205c4011b6d4a15d0f to your computer and use it in GitHub Desktop.
Save kring/72154056740251205c4011b6d4a15d0f to your computer and use it in GitHub Desktop.
type Complete<T> = {
[P in keyof Required<T>]: Pick<T, P> extends Required<Pick<T, P>> ? T[P] : (T[P] | undefined);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment