From f37481537117f3334986e58f97c768c4e47ecf77 Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Sat, 29 Jul 2017 22:58:34 +0200 Subject: [PATCH] Add typing. --- src/operations/operation.controller.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/operations/operation.controller.ts b/src/operations/operation.controller.ts index 818203c..a81e8e5 100644 --- a/src/operations/operation.controller.ts +++ b/src/operations/operation.controller.ts @@ -5,6 +5,7 @@ import { Observable } from 'rxjs/Rx'; import { ToastrService } from 'ngx-toastr'; +import { AccountService } from '../accounts/account.service'; import { Operation } from './operation'; import { OperationService } from './operation.service'; @@ -13,7 +14,7 @@ module.exports = function( accountIdService, toastrService: ToastrService, operationService: OperationService, - AccountService + AccountService: AccountService ){ var vm = this;