UNPKG

@proton/ccxt

Version:

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

21 lines (20 loc) 1.13 kB
import { implicitReturnType } from '../base/types.js'; import { Exchange as _Exchange } from '../base/Exchange.js'; interface Exchange { publicGetRateAll(params?: {}): Promise<implicitReturnType>; publicGetRatePair(params?: {}): Promise<implicitReturnType>; publicGetOrderbookPair(params?: {}): Promise<implicitReturnType>; publicGetTradehistoryPair(params?: {}): Promise<implicitReturnType>; publicGetPair(params?: {}): Promise<implicitReturnType>; publicGetCurrency(params?: {}): Promise<implicitReturnType>; publicGetOrderbookPairDepth(params?: {}): Promise<implicitReturnType>; privateGetBalancesExchangeBalances(params?: {}): Promise<implicitReturnType>; privateGetOrderPairOrderId(params?: {}): Promise<implicitReturnType>; privateGetOrderPair(params?: {}): Promise<implicitReturnType>; privateGetTradePair(params?: {}): Promise<implicitReturnType>; privatePostOrderPair(params?: {}): Promise<implicitReturnType>; privatePostOrderPairOrderIdCancel(params?: {}): Promise<implicitReturnType>; } declare abstract class Exchange extends _Exchange { } export default Exchange;