From 639aa3c14d909e80315840b2015ce8eff341290a Mon Sep 17 00:00:00 2001 From: John Reilly Date: Fri, 22 Aug 2014 12:14:55 +0100 Subject: [PATCH] Made tests noImplicitAny compliant --- angularjs/angular-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/angularjs/angular-tests.ts b/angularjs/angular-tests.ts index 2e19760e8..0627f80be 100644 --- a/angularjs/angular-tests.ts +++ b/angularjs/angular-tests.ts @@ -580,7 +580,7 @@ interface copyExampleScope { user: copyExampleUser; master: copyExampleUser; - update: (copyExampleUser) => any; + update: (copyExampleUser: copyExampleUser) => any; reset: () => any; }