Fix breaking change from contextually typed iife

This commit is contained in:
Ryan Cavanaugh 2016-05-12 17:13:27 -07:00
parent 2847235610
commit b32d16be67

View File

@ -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 () {