From e2ca1681dbd592c9dd00a498ccdecc67292affd9 Mon Sep 17 00:00:00 2001 From: Alexis Mangin Date: Fri, 14 Jul 2017 09:01:01 +0100 Subject: [PATCH] Remove @private flag on AnyAction type definition which causes problem with typescript, issue 2508 --- index.d.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index ced1559263..037fe76561 100644 --- a/index.d.ts +++ b/index.d.ts @@ -21,7 +21,6 @@ export interface Action { * An Action type which accepts any other properties. * This is mainly for the use of the `Reducer` type. * This is not part of `Action` itself to prevent users who are extending `Action. - * @private */ export interface AnyAction extends Action { // Allows any extra properties to be defined in an action.