diff --git a/package.json b/package.json index 3295a86..a48fa4e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "redux-devtools-inspector", - "version": "0.11.3", + "version": "0.11.4", "description": "Redux DevTools Diff Monitor", "scripts": { "build:lib": "NODE_ENV=production babel src --out-dir lib", diff --git a/src/types.js b/src/types.js index abf25fd..792cbe9 100644 --- a/src/types.js +++ b/src/types.js @@ -1,14 +1,18 @@ +/* @noflow */ export type Action = { timestamp: Date, error: ?string }; +/* @noflow */ export type TabName = 'Action' | 'Diff' | 'State'; +/* @noflow */ export type Tab = { name: TabName, component: React$Component }; +/* @noflow */ export type ReduxState = { selectedActionId: null | number, startActionId: null | number, @@ -17,6 +21,7 @@ export type ReduxState = { tabName: TabName }; +/* @noflow */ export type MonitorState = { initialScrollTop: number };