Fix Redux Middleware types (#29800)

This commit is contained in:
Renaud Chaput 2024-04-02 11:56:03 +02:00 committed by GitHub
parent a3fe82e359
commit 07635228e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -30,7 +30,8 @@ function isActionWithmaybeAlertParams(
return isAction(action); return isAction(action);
} }
export const errorsMiddleware: Middleware<Record<string, never>, RootState> = // eslint-disable-next-line @typescript-eslint/ban-types -- we need to use `{}` here to ensure the dispatch types can be merged
export const errorsMiddleware: Middleware<{}, RootState> =
({ dispatch }) => ({ dispatch }) =>
(next) => (next) =>
(action) => { (action) => {

View File

@ -51,7 +51,8 @@ const play = (audio: HTMLAudioElement) => {
}; };
export const soundsMiddleware = (): Middleware< export const soundsMiddleware = (): Middleware<
Record<string, never>, // eslint-disable-next-line @typescript-eslint/ban-types -- we need to use `{}` here to ensure the dispatch types can be merged
{},
RootState RootState
> => { > => {
const soundCache: Record<string, HTMLAudioElement> = {}; const soundCache: Record<string, HTMLAudioElement> = {};