| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1× 1× 9× 1× 9× 1× 1× | "use strict";
var ClassMethodParameterBinder = (function () {
function ClassMethodParameterBinder(baseClassMethodParameterBinder) {
this.baseClassMethodParameterBinder = baseClassMethodParameterBinder;
}
ClassMethodParameterBinder.prototype.bind = function (def) {
this.baseClassMethodParameterBinder.bind(def);
};
return ClassMethodParameterBinder;
}());
exports.ClassMethodParameterBinder = ClassMethodParameterBinder;
//# sourceMappingURL=ClassMethodParameterBinder.js.map
|