From 11aace067d642e312f3e107fa9a2538e9f4c0a3a Mon Sep 17 00:00:00 2001 From: hitmands - Giuseppe Mandato Date: Sun, 10 Mar 2019 17:13:18 +0000 Subject: [PATCH] fix(typings): add action.error field --- src/create-action/createAction.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/create-action/createAction.ts b/src/create-action/createAction.ts index fcf15db0..6beea227 100644 --- a/src/create-action/createAction.ts +++ b/src/create-action/createAction.ts @@ -8,6 +8,7 @@ export interface ReduxFluentAction< M = any, > extends FSA { type: T; + error: boolean; } type Formatter = (rawPayload: any, rawMeta: any, T: T) => R;