From b32d16be67f96e350136a098a3e968af4fdcdcbe Mon Sep 17 00:00:00 2001 From: Ryan Cavanaugh Date: Thu, 12 May 2016 17:13:27 -0700 Subject: [PATCH] Fix breaking change from contextually typed iife --- kolite/kolite-tests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kolite/kolite-tests.ts b/kolite/kolite-tests.ts index 378a56092a..4b2b662bdc 100644 --- a/kolite/kolite-tests.ts +++ b/kolite/kolite-tests.ts @@ -114,7 +114,7 @@ function test_full() { }; return self; }; - })(ko); + })(ko as any); (function (ko) { ko.utils.wrapAccessor = function (accessor) { return function () { @@ -175,7 +175,7 @@ function test_full() { ko.bindingHandlers.enable.update(element, canExecute, allBindingsAccessor, viewModel); } }; - })(ko); + })(ko as any); var my: any = {}; my.TwitterService = function () {