@usherlabs/ccxt
Version:
A JavaScript cryptocurrency trading library with support for 100+ exchanges. Verifiable data powered by Verity.
10 lines (9 loc) • 347 B
TypeScript
import { implicitReturnType } from '../base/types.js';
import { Exchange as _Exchange } from '../base/Exchange.js';
interface Exchange {
publicPostInfo(params?: {}): Promise<implicitReturnType>;
privatePostExchange(params?: {}): Promise<implicitReturnType>;
}
declare abstract class Exchange extends _Exchange {
}
export default Exchange;