This commit is contained in:
Nathan Bierema 2021-09-15 16:48:18 -04:00
parent 42cfee3ffa
commit d3ea334bc9
2 changed files with 4 additions and 7 deletions

View File

@ -706,11 +706,9 @@ export function connect(preConfig: Config): ConnectResponse {
};
}
export function updateStore<S, A extends Action<unknown>>(
stores: {
[K in string | number]: EnhancedStore<S, A, unknown>;
}
) {
export function updateStore<S, A extends Action<unknown>>(stores: {
[K in string | number]: EnhancedStore<S, A, unknown>;
}) {
return function (newStore: EnhancedStore<S, A, unknown>, instanceId: number) {
/* eslint-disable no-console */
console.warn(

View File

@ -118,8 +118,7 @@ interface Tally {
export type QueryTally = {
[key in QueryStatus]?: number;
} &
Tally;
} & Tally;
export interface RtkRequestTiming {
requestId: string;