Skip to content

Instantly share code, notes, and snippets.

@alexzuza
Created March 20, 2018 19:05
Show Gist options
  • Save alexzuza/68eb8ccf7e1588a2798912b04eb6a79c to your computer and use it in GitHub Desktop.
Save alexzuza/68eb8ccf7e1588a2798912b04eb6a79c to your computer and use it in GitHub Desktop.
DI injectable new api example
@Injectable({
providedIn: 'root'
})
export class SomeService {}
@Injectable({
providedIn: 'root',
useClass: MyService,
deps: []
})
export class AnotherService {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment