@exchanges/binance
Version:
Exchange provider for Binance API
12 lines (11 loc) • 384 B
TypeScript
import { BinanceKeyClient } from '../../clients';
import { ApiCallHostType } from '../apiCall';
export interface UserDataCallOptions {
client: BinanceKeyClient;
host: ApiCallHostType;
path: string;
data?: {
[name: string]: any;
};
}
export declare function userDataCall(options: UserDataCallOptions, callback: (data: any, error?: any) => any): () => void;