import okcoinRest from '../okcoin.js'; import { Int } from '../base/types.js'; import Client from '../base/ws/Client.js'; export default class okcoin extends okcoinRest { describe(): any; subscribe(channel: any, symbol: any, params?: {}): Promise; watchTrades(symbol: string, since?: Int, limit?: Int, params?: {}): Promise; watchOrders(symbol?: string, since?: Int, limit?: Int, params?: {}): Promise; handleOrders(client: Client, message: any, subscription?: any): void; watchTicker(symbol: string, params?: {}): Promise; handleTrade(client: Client, message: any): any; handleTicker(client: Client, message: any): any; watchOHLCV(symbol: string, timeframe?: string, since?: Int, limit?: Int, params?: {}): Promise; handleOHLCV(client: Client, message: any): void; watchOrderBook(symbol: string, limit?: Int, params?: {}): Promise; handleDelta(bookside: any, delta: any): void; handleDeltas(bookside: any, deltas: any): void; handleOrderBookMessage(client: Client, message: any, orderbook: any): any; handleOrderBook(client: Client, message: any): any; authenticate(params?: {}): Promise; watchBalance(params?: {}): Promise; subscribeToUserAccount(negotiation: any, params?: {}): Promise; handleBalance(client: Client, message: any): void; handleSubscriptionStatus(client: Client, message: any): any; handleAuthenticate(client: Client, message: any): any; ping(client: any): string; handlePong(client: Client, message: any): any; handleErrorMessage(client: Client, message: any): any; handleMessage(client: Client, message: any): any; }