1 2 3 4 5 6 7 8 9 10 | 1 1 4 1 | const $inject = ['HelloHelloService', 'BlahService']; const HelloService = function (helloService, blahService) { this.hello = () => helloService.hello() + blahService.blah(); }; HelloService.$inject = $inject; export default HelloService; |