@web-atoms/core
Version:
25 lines (24 loc) • 840 B
JavaScript
System.register(["../core/BindableProperty", "./baseTypes", "./bindUrlParameter"], function (_export, _context) {
"use strict";
var BindableProperty, registerInit, bindUrlParameter;
function BindableUrlParameter(name) {
return (target, key, descriptor) => {
registerInit(target, vm => {
bindUrlParameter(vm, key, name);
});
return BindableProperty(target, key);
};
}
_export("default", BindableUrlParameter);
return {
setters: [function (_coreBindableProperty) {
BindableProperty = _coreBindableProperty.BindableProperty;
}, function (_baseTypes) {
registerInit = _baseTypes.registerInit;
}, function (_bindUrlParameter) {
bindUrlParameter = _bindUrlParameter.default;
}],
execute: function () {}
};
});
//# sourceMappingURL=BindableUrlParameter.js.map