私は次のようなjqueryウィジェットを作成します:http: //alexsexton.com/blog/2010/02/using-inheritance-patterns-to-organize-large-jquery-applications/
/*mywidget.js*/
(function ($) {
function MyWidget(options, element) {
$.Widget.call(options, element);
}
MyWidget.prototype = Object.Create($.Widget.prototype);
MyWidget.prototype._create = function () {
/*my code here*/
}
MyWidget.prototype.destroy = function () {
/*my code here*/
$.Widget.prototype.destroy.call(this);
}
$.widget.bridge("mywidget", MyWidget);
}(jQuery));
このコードをtypescriptでどのように記述しますか?私はd.tsjquery-uiを知っていますが、それはインターフェースしか提供しません。インターフェイスを継承できません。