UNPKG

korea-crypto-exchange

Version:

한국의 주요 암호화폐 거래소(업비트, 빗썸) API를 쉽게 구현할 수 있도록 도와주는 TypeScript 라이브러리

8 lines (7 loc) 231 B
import { IExchangeStrategy, IExchangeConfig } from '../core/types'; export declare class ExchangeSelector { private config; constructor(config: IExchangeConfig); private getServerUrl; select(): IExchangeStrategy; }