Skip to content

Instantly share code, notes, and snippets.

@koningskristof
Created June 13, 2019 08:56
Show Gist options
  • Save koningskristof/5ef4eede7ec5e629eb195acd51922305 to your computer and use it in GitHub Desktop.
Save koningskristof/5ef4eede7ec5e629eb195acd51922305 to your computer and use it in GitHub Desktop.
export class InternalService {
public static $inject: Array<String> = [
'thisDomain.externalService'
];
constructor( private externalService) {
}
public doSomething() {
return this.externalService.getSomeState();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment