From 3bbc28476e65a6987990a3cd654fc048d200545d Mon Sep 17 00:00:00 2001 From: Dale Anderson Date: Wed, 13 Jan 2016 13:31:20 -0800 Subject: [PATCH] Fixed implicit typings --- azure-mobile-apps/azure-mobile-apps-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-mobile-apps/azure-mobile-apps-tests.ts b/azure-mobile-apps/azure-mobile-apps-tests.ts index 6ee440439..5e98e8074 100644 --- a/azure-mobile-apps/azure-mobile-apps-tests.ts +++ b/azure-mobile-apps/azure-mobile-apps-tests.ts @@ -29,7 +29,7 @@ mobileApp.use(function (req: any, res: any, next: any) { }); var table = mobileApp.table() -table.read(function (context) { +table.read(function (context: AzureMobileApps.Context) { return context.execute().then(function (result: any) { return result; });