From 106d8bd25a6f90e8660c257600a11d7e09c3f8f3 Mon Sep 17 00:00:00 2001 From: Horus Lugo Date: Wed, 24 May 2017 22:27:56 +0200 Subject: [PATCH] Fixes a typo on routerActions's symbol name Changes symbol name from 'routerAction' to 'routerActions'. --- types/react-router-redux/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/react-router-redux/index.d.ts b/types/react-router-redux/index.d.ts index e224f92530..8432000793 100644 --- a/types/react-router-redux/index.d.ts +++ b/types/react-router-redux/index.d.ts @@ -41,7 +41,7 @@ export function go(n: number): RouterAction; export function goBack(): RouterAction; export function goForward(): RouterAction; -export const routerAction: { +export const routerActions: { push: typeof push replace: typeof replace go: typeof go