Skip to content

Instantly share code, notes, and snippets.

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