@state-management/simple-state-machine
Version:
A simple state management library using StateKey and Command Pattern for Angular, React, and React Native.
12 lines (11 loc) • 869 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UpdateStateCommand = exports.StateMachine = exports.StateKey = exports.Command = void 0;
var command_1 = require("./command");
Object.defineProperty(exports, "Command", { enumerable: true, get: function () { return command_1.Command; } });
var state_key_1 = require("./state-key");
Object.defineProperty(exports, "StateKey", { enumerable: true, get: function () { return state_key_1.StateKey; } });
var state_machine_1 = require("./state-machine");
Object.defineProperty(exports, "StateMachine", { enumerable: true, get: function () { return state_machine_1.StateMachine; } });
var UpdateStateCommand_1 = require("./UpdateStateCommand");
Object.defineProperty(exports, "UpdateStateCommand", { enumerable: true, get: function () { return UpdateStateCommand_1.UpdateStateCommand; } });