Interface Middleware<DispatchExt, S, D>

A middleware is a higher-order function that composes a dispatch function to return a new dispatch function. It often turns async actions into actions.

Middleware is composable using function composition. It is useful for logging actions, performing side effects like routing, or turning an asynchronous API call into a series of synchronous actions.

Type Parameters

  • DispatchExt = {}

    Extra Dispatch signature added by this middleware.

  • S = any

    The type of the state supported by this middleware.

  • D extends Dispatch = Dispatch

    The type of Dispatch of the store where this middleware is installed.

Hierarchy

  • Middleware
  • Parameters

    Returns ((next) => ((action) => any))

      • (next): ((action) => any)
      • Parameters

        Returns ((action) => any)

          • (action): any
          • Parameters

            • action: any

            Returns any

Generated using TypeDoc