@solidgrounds/core
Version:
Dependency injection container
13 lines • 387 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MyOtherFeature = void 0;
const MyOtherFeature = ({ dependencies: { myFeature } }) => ({
myOtherFeature() {
return 'MyOtherFeature';
},
referenceToMyFeature() {
return myFeature();
},
});
exports.MyOtherFeature = MyOtherFeature;
//# sourceMappingURL=MyOtherFeature.js.map