@laserware/stasis
    Preparing search index...

    Type Alias ActionType<AC>

    ActionType: AC extends ActionCreator<{ type: string }>
        ? ReturnType<AC>
        : AC extends Record<any, any>
            ? { [K in keyof AC]: ActionType<AC[K]> }[keyof AC]
            : AC extends infer R ? never : never

    Returns the return type of the action creator.

    Type Parameters

    • AC

      Object or action creator to derive return value from.