Skip to content

Instantly share code, notes, and snippets.

@bjesuiter
Last active July 26, 2022 23:01
Show Gist options
  • Save bjesuiter/c6513a9ebe3a6dfab1596106e23995f1 to your computer and use it in GitHub Desktop.
Save bjesuiter/c6513a9ebe3a6dfab1596106e23995f1 to your computer and use it in GitHub Desktop.
observe.md

Observe

Typescript

Support of generic types as values of generic type params, which support the G<infer F> part:

type Unpacked<T, G> = T extends G<infer F> ? F: never

Related Links:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment