mirror of https://github.com/tootsuite/mastodon
Fix Redux Middleware types (#29800)
parent
a3fe82e359
commit
07635228e2
|
@ -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) => {
|
||||||
|
|
|
@ -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> = {};
|
||||||
|
|
Loading…
Reference in New Issue