@itrocks/framework
Version:
RAD framework for intuitive web application development, blending data and domain-driven design with modular architecture
13 lines • 437 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Store = Store;
const class_view_1 = require("@itrocks/class-view");
const store_1 = require("@itrocks/store");
function Store(name = '') {
const callBack = (0, store_1.Store)(name);
return function (target) {
(0, class_view_1.representativeOf)(target);
callBack(target);
};
}
//# sourceMappingURL=store-representative.js.map