sesaparcours
    Preparing search index...

    Interface BaseActionCreator<P, T, M, E>

    Basic type for all action creators.

    interface BaseActionCreator<P, T extends string, M = never, E = never> {
        match: (action: Action<unknown>) => action is PayloadAction<P, T, M, E>;
        type: T;
    }

    Type Parameters

    • P
    • T extends string
    • M = never
    • E = never

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    match: (action: Action<unknown>) => action is PayloadAction<P, T, M, E>
    type: T