Fix build errors harder

This commit is contained in:
dcrusader
2015-01-05 19:09:08 -08:00
parent 811ddbf03d
commit 3769701771
+1 -1
View File
@@ -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 = () => {