1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-28 03:08:30 +00:00

update web3 flowtype

This commit is contained in:
Szymon Lesisz 2018-09-13 14:39:08 +02:00
parent 9293a33b57
commit e4552b0998

View File

@ -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;