Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F32179182
D15063.1765072569.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D15063.1765072569.diff
View Options
diff --git a/lib/flow-typed/npm/redux_v4.x.x.js b/lib/flow-typed/npm/redux_v4.x.x.js
--- a/lib/flow-typed/npm/redux_v4.x.x.js
+++ b/lib/flow-typed/npm/redux_v4.x.x.js
@@ -14,7 +14,7 @@
declare export type DispatchAPI<A> = (action: A) => A;
- declare export type Dispatch<A: { type: any, ... }> = DispatchAPI<A>;
+ declare export type Dispatch<A: $ReadOnly<{ type: any, ... }>> = DispatchAPI<A>;
declare export type MiddlewareAPI<S, A, D = Dispatch<A>> = {
dispatch: D,
diff --git a/web/flow-typed/npm/redux_v4.x.x.js b/web/flow-typed/npm/redux_v4.x.x.js
--- a/web/flow-typed/npm/redux_v4.x.x.js
+++ b/web/flow-typed/npm/redux_v4.x.x.js
@@ -14,7 +14,7 @@
declare export type DispatchAPI<A> = (action: A) => A;
- declare export type Dispatch<A: { type: any, ... }> = DispatchAPI<A>;
+ declare export type Dispatch<A: $ReadOnly<{ type: any, ... }>> = DispatchAPI<A>;
declare export type MiddlewareAPI<S, A, D = Dispatch<A>> = {
dispatch: D,
diff --git a/web/redux/tab-synchronization.js b/web/redux/tab-synchronization.js
--- a/web/redux/tab-synchronization.js
+++ b/web/redux/tab-synchronization.js
@@ -1,13 +1,13 @@
// @flow
-import type { Middleware, Store } from 'redux';
+import type { Middleware, Store, Dispatch } from 'redux';
import type { Action, AppState } from './redux-setup.js';
const WEB_REDUX_CHANNEL = new BroadcastChannel('shared-redux');
const tabSynchronizationMiddleware: Middleware<AppState, Action> =
- () => next => action => {
+ () => (next: Dispatch<Action>) => (action: Action) => {
const result = next(action);
// For now the `dispatchSource` field is not included in any of the
// redux actions and this causes flow to throw an error.
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Dec 7, 1:56 AM (19 h, 56 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5841952
Default Alt Text
D15063.1765072569.diff (1 KB)
Attached To
Mode
D15063: [Flow262][skip-ci] Fix Dispatch type
Attached
Detach File
Event Timeline
Log In to Comment