@laserware/stasis
    Preparing search index...

    Interface ActionCreatorWithNonInferrablePayload<T>

    An action creator of type T whose payload type could not be inferred. Accepts everything as payload.

    Type Parameters

    • T extends string = string

    Hierarchy

    • BaseActionCreator<unknown, T>
      • ActionCreatorWithNonInferrablePayload
    • Calling this redux#ActionCreator with an argument will return a PayloadAction of type T with a payload of exactly the type of the argument.

      Type Parameters

      • PT extends unknown

      Parameters

      • payload: PT

      Returns { payload: PT; type: T }