UNPKG

@felangel/bloc

Version:

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

12 lines 372 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Transition = /** @class */ (function () { function Transition(state, event, nextState) { this.state = state; this.event = event; this.nextState = nextState; } return Transition; }()); exports.Transition = Transition; //# sourceMappingURL=transition.js.map