UNPKG

react-realtime-crypto-prices

Version:
12 lines (11 loc) 362 B
/// <reference types="react" /> interface PriceStreaming { intialized: boolean; assets: Array<any>; prices: any; tickers: any; streamPrices?: (symbols: Array<string>) => void; streamTickers?: (symbols: Array<string>) => void; } declare const CryptoPriceContext: import("react").Context<PriceStreaming>; export default CryptoPriceContext;