import {btcalpha as Type} from 'ccxt'; export interface btcalphaRestApiType extends Type { publicGetCurrencies: (params:{}, context?:{}) => Promise; publicGetPairs: (params:{}, context?:{}) => Promise; publicGetOrderbookPairName: (params:{}, context?:{}) => Promise; publicGetExchanges: (params:{}, context?:{}) => Promise; publicGetChartsPairTypeChart: (params:{}, context?:{}) => Promise; publicGetTicker: (params:{}, context?:{}) => Promise; privateGetWallets: (params:{}, context?:{}) => Promise; privateGetOrdersOwn: (params:{}, context?:{}) => Promise; privateGetOrderId: (params:{}, context?:{}) => Promise; privateGetExchangesOwn: (params:{}, context?:{}) => Promise; privateGetDeposits: (params:{}, context?:{}) => Promise; privateGetWithdraws: (params:{}, context?:{}) => Promise; privatePostOrder: (params:{}, context?:{}) => Promise; privatePostOrderCancel: (params:{}, context?:{}) => Promise; }