From 79111604053c74c1100598723af614b773baf430 Mon Sep 17 00:00:00 2001 From: Vladimir Metnev Date: Sun, 18 Feb 2018 15:57:51 +0200 Subject: [PATCH] fix(actions-common): remove flowtypes --- src/common/actions/common/index.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/common/actions/common/index.js b/src/common/actions/common/index.js index 4521b4f8..c6b2138a 100644 --- a/src/common/actions/common/index.js +++ b/src/common/actions/common/index.js @@ -1,14 +1,3 @@ // @flow export const LOCATION_CHANGE = '@@router/LOCATION_CHANGE' -export type LOCATION_CHANGE_TYPE = { - type: '@@router/LOCATION_CHANGE', - payload: { - pathname: string - } -} -// XXX: DONT USE INTERNAL REDUX STUFF! e.g. @@INIT is an internal action -// export const APP_INIT = '@@INIT' export const APPLICATION_INIT = 'APPLICATION_INIT' -export type APPLICATION_INIT_TYPE = { - type: 'APPLICATION_INIT' -}