import {ripio as Type} from 'ccxt'; export interface ripioRestApiType extends Type { publicGetRateAll: (params:{}, context?:{}) => Promise; publicGetRatePair: (params:{}, context?:{}) => Promise; publicGetOrderbookPair: (params:{}, context?:{}) => Promise; publicGetTradehistoryPair: (params:{}, context?:{}) => Promise; publicGetPair: (params:{}, context?:{}) => Promise; publicGetCurrency: (params:{}, context?:{}) => Promise; publicGetOrderbookPairDepth: (params:{}, context?:{}) => Promise; privateGetBalancesExchangeBalances: (params:{}, context?:{}) => Promise; privateGetOrderPairOrderId: (params:{}, context?:{}) => Promise; privateGetOrderPair: (params:{}, context?:{}) => Promise; privateGetTradePair: (params:{}, context?:{}) => Promise; privatePostOrderPair: (params:{}, context?:{}) => Promise; privatePostOrderPairOrderIdCancel: (params:{}, context?:{}) => Promise; }