flex-direction→main-axis(row[horizontal] → orcolumn[vertical] ↓)justify-content→main-axis-alignalign-items→cross-axis-alignalign-content→cross-axis-align-wrapped
align-self→cross-axis-align-override
| import { SafeAny } from "@dvtl/types"; | |
| /** | |
| * Create a finite-state-machine (FSM) transitioning function by declaring the | |
| * relationships between states. | |
| * | |
| * The FSM is modeled as a set of states and transitions between those states. | |
| * | |
| * The returned `transition` function is statically typed to ensure only valid | |
| * transitions between states can occur. |