EventPhase

type
types.ts:1155

Phase of event subscription notification. - 'committed': Events that passed middleware and reached reducers (default) - 'uncommitted': Events rejected by middleware - 'all': Both committed and uncommitted events

Definition

type
type EventPhase = "committed" | "uncommitted" | "all"

"committed" | "uncommitted" | "all"