1 import type { SerializedError } from '@reduxjs/toolkit';
3 export type ReducerValue<Returned> = {
4 value: Returned | undefined;
5 error: SerializedError | undefined;
8 // If this state was fetched during the lifetime of this app. It's pruned for the persisted state.
9 fetchedEphemeral: boolean | undefined;
13 export enum CacheType {
19 export type ThunkOptions<T> = {