@web-atoms/core
Version:
17 lines (16 loc) • 620 B
JavaScript
System.register(["../core/PropertyBinding"], function (_export, _context) {
"use strict";
var PropertyBinding;
function bindProperty(vm, target, propertyName, source, path, twoWays) {
const pb = new PropertyBinding(target, null, propertyName, path, twoWays && typeof twoWays !== "function" ? true : false, twoWays, source);
return vm.registerDisposable(pb);
}
_export("default", bindProperty);
return {
setters: [function (_corePropertyBinding) {
PropertyBinding = _corePropertyBinding.PropertyBinding;
}],
execute: function () {}
};
});
//# sourceMappingURL=bindProperty.js.map