@sustain/core
Version:
Sustain is a Framework that is barely used despedcies to make stable and sustainable apps
17 lines • 531 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Module = void 0;
require("reflect-metadata");
function createModuleDecorator() {
return (config = '') => {
return function (constructorFunction) {
constructorFunction.prototype.MODULE_CONFIG = config;
constructorFunction.prototype.injectable = true;
};
};
}
/**
* Create a @Module decorator
*/
exports.Module = createModuleDecorator();
//# sourceMappingURL=module.decorator.js.map