mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-06 01:10:08 +00:00
Fix breaking change from contextually typed iife
This commit is contained in:
@@ -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 () {
|
||||
|
||||
Reference in New Issue
Block a user