import {probit as Type} from 'ccxt'; export interface probitRestApiType extends Type { publicGetMarket: (params:{}, context?:{}) => Promise; publicGetCurrency: (params:{}, context?:{}) => Promise; publicGetCurrencyWithPlatform: (params:{}, context?:{}) => Promise; publicGetTime: (params:{}, context?:{}) => Promise; publicGetTicker: (params:{}, context?:{}) => Promise; publicGetOrderBook: (params:{}, context?:{}) => Promise; publicGetTrade: (params:{}, context?:{}) => Promise; publicGetCandle: (params:{}, context?:{}) => Promise; privatePostNewOrder: (params:{}, context?:{}) => Promise; privatePostCancelOrder: (params:{}, context?:{}) => Promise; privatePostWithdrawal: (params:{}, context?:{}) => Promise; privateGetBalance: (params:{}, context?:{}) => Promise; privateGetOrder: (params:{}, context?:{}) => Promise; privateGetOpenOrder: (params:{}, context?:{}) => Promise; privateGetOrderHistory: (params:{}, context?:{}) => Promise; privateGetTradeHistory: (params:{}, context?:{}) => Promise; privateGetDepositAddress: (params:{}, context?:{}) => Promise; accountsPostToken: (params:{}, context?:{}) => Promise; }