Skip to content

Instantly share code, notes, and snippets.

@koningskristof
Last active June 13, 2019 08:57
Show Gist options
  • Save koningskristof/08ab3495df956f49a3c8da37049046c1 to your computer and use it in GitHub Desktop.
Save koningskristof/08ab3495df956f49a3c8da37049046c1 to your computer and use it in GitHub Desktop.
export class InternalService {
public static $inject: Array<String> = [
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