import type { BlackoutError } from '@farfetch/blackout-client'; import type { CombinedState, EmptyObject } from 'redux'; import type { Nullable } from './/index.js'; type BaseStateType = { error: Nullable; isLoading: boolean; } & S; export type StateWithoutResult = BaseStateType; export type StateWithResultArray = CombinedState & { result?: Nullable>; }>; export type StateWithResult = CombinedState & { result: Nullable; }>; export {};