@exchanges/binance
Version:
Exchange provider for Binance API
8 lines (7 loc) • 305 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
export interface TemplatePayload {
}
export interface TemplateResponse {
coin: string;
}
export declare function template(client: BinanceSignedClient, payload: TemplatePayload, callback: (data: TemplateResponse, error?: any) => any): () => any;