├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── fsm.test.ts └── fsm.ts └── vitest.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnarts/tstate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnarts/tstate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnarts/tstate/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnarts/tstate/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnarts/tstate/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/fsm.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnarts/tstate/HEAD/src/fsm.test.ts -------------------------------------------------------------------------------- /src/fsm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnarts/tstate/HEAD/src/fsm.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnarts/tstate/HEAD/vitest.config.ts --------------------------------------------------------------------------------