@laserware/stasis
    Preparing search index...

    Type Alias AsyncThunk<Returned, ThunkArg, ThunkApiConfig>

    AsyncThunk: AsyncThunkActionCreator<Returned, ThunkArg, ThunkApiConfig> & {
        fulfilled: AsyncThunkFulfilledActionCreator<
            Returned,
            ThunkArg,
            ThunkApiConfig,
        >;
        pending: AsyncThunkPendingActionCreator<ThunkArg, ThunkApiConfig>;
        rejected: AsyncThunkRejectedActionCreator<ThunkArg, ThunkApiConfig>;
        settled: (
            action: any,
        ) => action is ReturnType<
            | AsyncThunkRejectedActionCreator<ThunkArg, ThunkApiConfig>
            | AsyncThunkFulfilledActionCreator<Returned, ThunkArg, ThunkApiConfig>,
        >;
        typePrefix: string;
    }

    A type describing the return value of createAsyncThunk. Might be useful for wrapping createAsyncThunk in custom abstractions.

    Type Parameters

    • Returned
    • ThunkArg
    • ThunkApiConfig extends AsyncThunkConfig