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