From 3769701771f3273a903bbcd70bb2f7827137e118 Mon Sep 17 00:00:00 2001 From: dcrusader Date: Mon, 5 Jan 2015 19:09:08 -0800 Subject: [PATCH] Fix build errors harder --- di-lite/di-lite-test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/di-lite/di-lite-test.ts b/di-lite/di-lite-test.ts index eed9c2625..8d6bfb777 100644 --- a/di-lite/di-lite-test.ts +++ b/di-lite/di-lite-test.ts @@ -4,7 +4,7 @@ interface Dependency { dependencies?: string; } -function doTest(test: (ctx, ...obj: Dependency[]) => void) { +function doTest(test: (ctx: any, ...obj: Dependency[]) => void) { // create di context var ctx = di.createContext(), A: Dependency = () => {