UNPKG

@felangel/bloc

Version:

A predictable state management library that helps implement the BLoC design pattern in JavaScript

18 lines 541 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var BlocObserver = /** @class */ (function () { function BlocObserver() { } BlocObserver.prototype.onEvent = function (_bloc, _event) { return; }; BlocObserver.prototype.onTransition = function (_bloc, _transition) { return; }; BlocObserver.prototype.onError = function (_bloc, _error) { return; }; return BlocObserver; }()); exports.BlocObserver = BlocObserver; //# sourceMappingURL=bloc-observer.js.map