import {bitrue as Type} from 'ccxt'; export interface bitrueRestApiType extends Type { klinePublicGetPublicJson: (params:{}, context?:{}) => Promise; klinePublicGetPublicCurrencyJson: (params:{}, context?:{}) => Promise; v1PublicGetPing: (params:{}, context?:{}) => Promise; v1PublicGetTime: (params:{}, context?:{}) => Promise; v1PublicGetExchangeInfo: (params:{}, context?:{}) => Promise; v1PublicGetDepth: (params:{}, context?:{}) => Promise; v1PublicGetTrades: (params:{}, context?:{}) => Promise; v1PublicGetHistoricalTrades: (params:{}, context?:{}) => Promise; v1PublicGetAggTrades: (params:{}, context?:{}) => Promise; v1PublicGetTicker24hr: (params:{}, context?:{}) => Promise; v1PublicGetTickerPrice: (params:{}, context?:{}) => Promise; v1PublicGetTickerBookTicker: (params:{}, context?:{}) => Promise; v1PublicGetMarketKline: (params:{}, context?:{}) => Promise; v1PrivateGetOrder: (params:{}, context?:{}) => Promise; v1PrivateGetOpenOrders: (params:{}, context?:{}) => Promise; v1PrivateGetAllOrders: (params:{}, context?:{}) => Promise; v1PrivateGetAccount: (params:{}, context?:{}) => Promise; v1PrivateGetMyTrades: (params:{}, context?:{}) => Promise; v1PrivateGetEtfNetValueSymbol: (params:{}, context?:{}) => Promise; v1PrivateGetWithdrawHistory: (params:{}, context?:{}) => Promise; v1PrivateGetDepositHistory: (params:{}, context?:{}) => Promise; v1PrivatePostOrder: (params:{}, context?:{}) => Promise; v1PrivatePostWithdrawCommit: (params:{}, context?:{}) => Promise; v1PrivateDeleteOrder: (params:{}, context?:{}) => Promise; v2PrivateGetMyTrades: (params:{}, context?:{}) => Promise; }