store app state in URL hash

This commit is contained in:
Joeri Exelmans 2025-10-07 15:49:19 +02:00
parent 41f34ab65e
commit 9dd72484fa
10 changed files with 319 additions and 125 deletions

View file

@ -3,6 +3,7 @@ import { TransitionLabel } from "./label_ast";
export type AbstractState = {
uid: string;
children: ConcreteState[];
comments: [string, string][]; // array of tuple (text-uid, text-text)
}
export type AndState = {