mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-24 17:52:45 +00:00
Fix breaking change from contextually typed iife
This commit is contained in:
parent
2847235610
commit
b32d16be67
@ -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 () {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user