UNPKG

@ango-ya/ccxt

Version:

A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges

15 lines (14 loc) 750 B
import upbitRest from '../upbit.js'; import type { Int, OrderBook, Trade, Ticker } from '../base/types.js'; import Client from '../base/ws/Client.js'; export default class upbit extends upbitRest { describe(): any; watchPublic(symbol: string, channel: any, params?: {}): Promise<any>; watchTicker(symbol: string, params?: {}): Promise<Ticker>; watchTrades(symbol: string, since?: Int, limit?: Int, params?: {}): Promise<Trade[]>; watchOrderBook(symbol: string, limit?: Int, params?: {}): Promise<OrderBook>; handleTicker(client: Client, message: any): void; handleOrderBook(client: Client, message: any): void; handleTrades(client: Client, message: any): void; handleMessage(client: Client, message: any): void; }