@epikodelabs/actionstack / combineEnhancers
Function: combineEnhancers()
combineEnhancers(...
enhancers):StoreEnhancer
Defined in: utils.ts:183
Combines multiple store enhancers into a single enhancer function. This allows multiple enhancers to be applied in sequence to the store. Typically used for combining middleware, logging, or other store customizations.
Parameters
enhancers
...(false | StoreEnhancer | null | undefined)[]
An array of store enhancers to be combined.
Returns
A single store enhancer that applies all provided enhancers.