You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/react/src/server/redux/redux.js
-56Lines changed: 0 additions & 56 deletions
Original file line number
Diff line number
Diff line change
@@ -3,11 +3,6 @@ export function formatProdErrorMessage(code) {
3
3
return`Minified Redux error #${code}; visit https://redux.js.org/Errors?code=${code} for the full message or use the non-minified dev environment for full errors. `;
invalidate: <EextendsEndpointInterface<FetchFunction,Schema|undefined,boolean|undefined>>(endpoint: E, ...args: readonly[...Parameters<E>]|readonly[
489
-
null
490
-
])=>Promise<void>;
488
+
invalidate: <EextendsEndpointInterface<FetchFunction,Schema|undefined,boolean|undefined>>(endpoint: E, ...args: readonly[...Parameters<E>]|readonly[null])=>Promise<void>;
491
489
/**
492
490
* Forces refetching and suspense on useSuspense on all matching endpoint result keys.
subscribe: <EextendsEndpointInterface<FetchFunction,Schema|undefined,false|undefined>>(endpoint: E, ...args: readonly[...Parameters<E>]|readonly[
553
-
null
554
-
])=>Promise<void>;
550
+
subscribe: <EextendsEndpointInterface<FetchFunction,Schema|undefined,false|undefined>>(endpoint: E, ...args: readonly[...Parameters<E>]|readonly[null])=>Promise<void>;
555
551
/**
556
552
* Marks completion of subscription to a given Endpoint.
unsubscribe: <EextendsEndpointInterface<FetchFunction,Schema|undefined,false|undefined>>(endpoint: E, ...args: readonly[...Parameters<E>]|readonly[
560
-
null
561
-
])=>Promise<void>;
555
+
unsubscribe: <EextendsEndpointInterface<FetchFunction,Schema|undefined,false|undefined>>(endpoint: E, ...args: readonly[...Parameters<E>]|readonly[null])=>Promise<void>;
562
556
/*************** More ***************/
563
557
/**
564
558
* Gets a snapshot (https://dataclient.io/docs/api/Snapshot)
0 commit comments