• Creates a store enhancer that applies middleware to the dispatch method of the Redux store. This is handy for a variety of tasks, such as expressing asynchronous actions in a concise manner, or logging every action payload.

    See redux-thunk package as an example of the Redux middleware.

    Because middleware is potentially asynchronous, this should be the first store enhancer in the composition chain.

    Note that each middleware will be given the dispatch and getState functions as named arguments.

    Returns StoreEnhancer

    A store enhancer applying the middleware.

  • Type Parameters

    • Ext1
    • S

    Parameters

    Returns StoreEnhancer<{
        dispatch: Ext1;
    }>

  • Type Parameters

    • Ext1
    • Ext2
    • S

    Parameters

    Returns StoreEnhancer<{
        dispatch: Ext1 & Ext2;
    }>

  • Type Parameters

    • Ext1
    • Ext2
    • Ext3
    • S

    Parameters

    Returns StoreEnhancer<{
        dispatch: Ext1 & Ext2 & Ext3;
    }>

  • Type Parameters

    • Ext1
    • Ext2
    • Ext3
    • Ext4
    • S

    Parameters

    Returns StoreEnhancer<{
        dispatch: Ext1 & Ext2 & Ext3 & Ext4;
    }>

  • Type Parameters

    • Ext1
    • Ext2
    • Ext3
    • Ext4
    • Ext5
    • S

    Parameters

    Returns StoreEnhancer<{
        dispatch: Ext1 & Ext2 & Ext3 & Ext4 & Ext5;
    }>

  • Type Parameters

    • Ext
    • S = any

    Parameters

    Returns StoreEnhancer<{
        dispatch: Ext;
    }>