Skip to content

Instantly share code, notes, and snippets.

@nicojs
Created January 15, 2019 14:45
Show Gist options
  • Save nicojs/6be0fe34dfc3fba38575db69127731f6 to your computer and use it in GitHub Desktop.
Save nicojs/6be0fe34dfc3fba38575db69127731f6 to your computer and use it in GitHub Desktop.
type CorrespondingTypes<Tokens extends (keyof Context)[]> = {
[I in keyof Tokens]: Tokens[I] extends keyof Context ? Context[Tokens[I]] : never;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment