UNPKG

@coinset/btcbox

Version:
9 lines 499 B
import type { TickerData } from '../../api/public/ticker'; import type { BTCBOXPair } from '../../shared/types/currency'; import type { SimplePublicAPI } from '../../shared/types/fetch'; declare type TickersOptions = {}; declare type TickersResponse = Record<BTCBOXPair, TickerData> & Record<string, unknown>; declare const fetchTickers: SimplePublicAPI<TickersOptions, TickersResponse>; export { fetchTickers }; export type { TickersOptions, TickersResponse }; //# sourceMappingURL=tickers.d.ts.map