Skip to content

Instantly share code, notes, and snippets.

@nicojs
Last active January 15, 2019 21:55
Show Gist options
  • Save nicojs/7ab668713cec1102ea463f500d09270b to your computer and use it in GitHub Desktop.
Save nicojs/7ab668713cec1102ea463f500d09270b to your computer and use it in GitHub Desktop.
class Injector<TContext> {
provideValue<Token extends string, R>(token: Token, value: R)
: Injector<{ [K in Token]: R } & TContext> {
/* out of scope */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment