JSSM, a JavaScript state machine - the FSM for FSL
    Preparing search index...

    Type Alias JssmTransitionConfig

    JssmTransitionConfig: JssmTransitionStyleKey[]

    The compiled value of a transition: {} config block: an ordered list of edge-default style items. V1 mirrors the state-style shape used by default_state_config; group machinery that consumes it lands in a later task.

    import { compile, parse } from 'jssm';
    const cfg = compile(parse('a -> b; transition: { color: red; };'));
    // cfg.default_transition_config === [ { key: 'color', value: '#ff0000ff' } ]

    JssmGraphConfig