UNPKG

angular2-state-machine-updated

Version:

Angular 2 State Machine Updated - Angular 2 port for famous state-machine. https://github.com/jakesgordon/javascript-state-machine.

12 lines (11 loc) 310 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var StateEvent = (function () { function StateEvent(options) { this.name = options.name; this.from = options.from; this.to = options.to; } return StateEvent; }()); exports.StateEvent = StateEvent;