This commit is contained in:
Nathan Bierema 2021-09-13 13:31:20 -04:00
parent d76fd248e6
commit 22f41d1b6c
3 changed files with 5 additions and 10 deletions

View File

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

View File

@ -1,7 +1,5 @@
{ {
"processors": [ "processors": ["stylelint-processor-styled-components"],
"stylelint-processor-styled-components"
],
"extends": [ "extends": [
"stylelint-config-recommended", "stylelint-config-recommended",
"stylelint-config-styled-components", "stylelint-config-styled-components",

View File

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