all files / dist/binders/base/interface/ InterfacePropertyBinder.js

100% Statements 9/9
100% Branches 0/0
100% Functions 3/3
100% Lines 9/9
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16             
"use strict";
var InterfacePropertyBinder = (function () {
    function InterfacePropertyBinder(basePropertyBinder, documentationedBinder) {
        this.basePropertyBinder = basePropertyBinder;
        this.documentationedBinder = documentationedBinder;
    }
    InterfacePropertyBinder.prototype.bind = function (def) {
        this.basePropertyBinder.bind(def);
        this.documentationedBinder.bind(def);
    };
    return InterfacePropertyBinder;
}());
exports.InterfacePropertyBinder = InterfacePropertyBinder;
 
//# sourceMappingURL=InterfacePropertyBinder.js.map