Variable TERMINAL_CALL_STATESConst

TERMINAL_CALL_STATES: Set<CallState> = ...

Set of terminal call states -- once reached, no further transitions are allowed by the CallManager state machine.

Used for guard checks: if (TERMINAL_CALL_STATES.has(call.state)) return;