UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

6 lines (5 loc) 228 B
import { PublicCallOptions } from './publicCall'; export interface ApiKeyCallOptions extends PublicCallOptions { apiKey: string; } export declare function apiKeyCall<Response>(options: ApiKeyCallOptions): Promise<Response>;