Skip to content

BubblesOfInstance

BubblesOfInstance<TFsm> = TFsm extends Fsm ? TBubbles : TFsm extends BehavioralFsm ? TBubbles : never

Defined in: types.ts:170

Extracts the declared bubbles union from a concrete machina FSM instance — the inputs that FSM fires at itself without handling, expecting a _child mount point to catch them (see ChildCoverage). never for an instance that declared no bubbles (the common case) or for a non-machina type.

TFsm