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.
transition: {}
default_state_config
import { compile, parse } from 'jssm';const cfg = compile(parse('a -> b; transition: { color: red; };'));// cfg.default_transition_config === [ { key: 'color', value: '#ff0000ff' } ] Copy
import { compile, parse } from 'jssm';const cfg = compile(parse('a -> b; transition: { color: red; };'));// cfg.default_transition_config === [ { key: 'color', value: '#ff0000ff' } ]
JssmGraphConfig
The compiled value of a
transition: {}config block: an ordered list of edge-default style items. V1 mirrors the state-style shape used bydefault_state_config; group machinery that consumes it lands in a later task.