From e8109350bb1edd09d8079592ac30da6784480f3a Mon Sep 17 00:00:00 2001 From: Szymon Lesisz Date: Fri, 17 Aug 2018 15:19:50 +0200 Subject: [PATCH] reexport type from 'trezor-connect' to 'flowtype' module --- src/flowtype/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/flowtype/index.js b/src/flowtype/index.js index 74d33214..80280122 100644 --- a/src/flowtype/index.js +++ b/src/flowtype/index.js @@ -78,6 +78,7 @@ export type UnknownDevice = $Exact<{ ts: number; }> +export type { Device } from 'trezor-connect'; export type TrezorDevice = AcquiredDevice | UnknownDevice; export type RouterLocationState = LocationState;