UNPKG

@coinset/btcbox

Version:
13 lines 444 B
import type { BTCBOXSymbol } from '../../shared/types/currency'; import type { PublicAPI } from '../../shared/types/fetch'; declare type DepthOptions = { coin: BTCBOXSymbol; }; declare type DepthResponse = { asks: [number, number][]; bids: [number, number][]; }; declare const fetchDepth: PublicAPI<DepthOptions, DepthResponse>; export { fetchDepth }; export type { DepthOptions, DepthResponse }; //# sourceMappingURL=depth.d.ts.map