Skip to content

Instantly share code, notes, and snippets.

@alexzuza
Created March 20, 2018 19:06
Show Gist options
  • Save alexzuza/dca2e88e0831cd254590e08452427d4c to your computer and use it in GitHub Desktop.
Save alexzuza/dca2e88e0831cd254590e08452427d4c to your computer and use it in GitHub Desktop.
DI injection token new api
export class InjectionToken<T> {
constructor(protected _desc: string, options?: {
providedIn?: Type<any>| 'root' | null,
factory: () => T
}) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment