Skip to content

Instantly share code, notes, and snippets.

@gino8080
Forked from deleteman/generic_get.ts
Created September 24, 2020 07:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gino8080/6872c95f0920d0d8c13d184d9c9d81d8 to your computer and use it in GitHub Desktop.
Save gino8080/6872c95f0920d0d8c13d184d9c9d81d8 to your computer and use it in GitHub Desktop.
function get<T, K extends keyof T>(p: T, key: K): any {
return p[key]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment