@tygr/core
Version:
Combine redux capable node modules into angular projects with ease.
15 lines • 462 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class StoreService {
constructor(_actions$, _store, _config) {
this._actions$ = _actions$;
this._store = _store;
this._config = _config;
_store.injectConfigs(_config);
if (_config.effects) {
_config.effects(_actions$, _store, this);
}
}
}
exports.StoreService = StoreService;
//# sourceMappingURL=store-service.js.map