UNPKG

@azuro-org/sdk

Version:

One-stop solution for building betting dApps on the Azuro Protocol.

8 lines (7 loc) 254 B
import React from 'react'; export type FeedSocketContextValue = { socket: WebSocket | undefined; isSocketReady: boolean; }; export declare const useFeedSocket: () => FeedSocketContextValue; export declare const FeedSocketProvider: React.FC<any>;