tuple-state-machine
v0.0.1
Published
Create state machine in TypeScript using tuples
Maintainers
Readme
TypeScript State Machine (tuple-state-machine)
const machine1 = createStateMachine([
["opened", "close", "closed"],
["closed", "open", "opened"],
["closed", "break", "broken"],
]);