@overmap-ai/core 1.0.57-export-overmap-reducer.2 → 1.0.57-export-overmap-reducer.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,11 +5,11 @@ import { OvermapRootState } from "../../typings";
5
5
  export interface ISDKContext {
6
6
  sdk: OvermapSDK;
7
7
  }
8
- interface SDKProviderProps<TStore extends ToolkitStore<OvermapRootState>> {
8
+ interface SDKProviderProps<TState extends OvermapRootState> {
9
9
  children: React.ReactNode;
10
10
  API_URL: string;
11
- store: TStore;
11
+ store: ToolkitStore<TState>;
12
12
  }
13
13
  declare const SDKContext: React.Context<ISDKContext>;
14
- declare const SDKProvider: <TStore extends ToolkitStore<OvermapRootState, import("redux").AnyAction, readonly import("redux").Middleware<{}, OvermapRootState, import("redux").Dispatch<import("redux").AnyAction>>[]>>(props: SDKProviderProps<TStore>) => import("react/jsx-runtime").JSX.Element;
14
+ declare const SDKProvider: <TState extends OvermapRootState>(props: SDKProviderProps<TState>) => import("react/jsx-runtime").JSX.Element;
15
15
  export { SDKProvider, SDKContext };
@@ -16660,7 +16660,6 @@ export {
16660
16660
  outboxReducer,
16661
16661
  outboxSlice,
16662
16662
  overmapEnhancer,
16663
- overmapReducer,
16664
16663
  overmapReducers,
16665
16664
  overmapRootReducer,
16666
16665
  patchCategory,