@coinset/btcbox
Version:
BTCBOX API client
13 lines • 444 B
TypeScript
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