UNPKG

ccxt

Version:

A cryptocurrency trading API with more than 100 exchanges in JavaScript / TypeScript / Python / C# / PHP / Go

10 lines (9 loc) 362 B
import { implicitReturnType } from '../../base/types.js'; import { default as _Exchange } from '../../base/PredictionExchange.js'; interface Exchange { publicPostInfo(params?: {}): Promise<implicitReturnType>; privatePostExchange(params?: {}): Promise<implicitReturnType>; } declare abstract class Exchange extends _Exchange { } export default Exchange;