UNPKG

@machinemode/cryptopia

Version:

Node wrapper for Cryptopia's CLient API

12 lines (11 loc) 375 B
import AccountService from './account/AccountService'; import MarketService from './market/MarketService'; declare class CryptopiaClient { private httpsClient; private accountService; private marketService; constructor(key?: string, secret?: string); readonly market: MarketService; readonly account: AccountService; } export default CryptopiaClient;