From e4552b09985ce05681bba42b9724d2e251468253 Mon Sep 17 00:00:00 2001 From: Szymon Lesisz Date: Thu, 13 Sep 2018 14:39:08 +0200 Subject: [PATCH] update web3 flowtype --- src/flowtype/npm/web3.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/flowtype/npm/web3.js b/src/flowtype/npm/web3.js index eff45ab0..1b04d7d4 100644 --- a/src/flowtype/npm/web3.js +++ b/src/flowtype/npm/web3.js @@ -13,6 +13,9 @@ declare module 'web3' { }; declare type WebsocketProviderT = { + connection: { + close: () => void; + }; // WebSocket type on: (type: string, callback: () => any) => void; removeAllListeners: (type: string) => void; reset: () => void;