From 2cd55379ee84769126875f33683f8c3d89895e8d Mon Sep 17 00:00:00 2001 From: apanizo Date: Wed, 2 May 2018 15:24:23 +0200 Subject: [PATCH] WA-238 Adding assSafe action type --- src/routes/open/container/actions.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/routes/open/container/actions.js b/src/routes/open/container/actions.js index c3c7d973..f8fb5039 100644 --- a/src/routes/open/container/actions.js +++ b/src/routes/open/container/actions.js @@ -1,6 +1,8 @@ // @flow import addSafe from '~/routes/safe/store/actions/addSafe' +export type AddSafe = typeof addSafe + export type Actions = { addSafe: typeof addSafe, }