declare class Constants { static readonly UBIT_SERVER_URL: "https://api.upbit.com/v1"; static readonly ACCOUNT_URL: "https://api.upbit.com/v1/accounts"; static readonly ORDER_CHANCE_URL: "https://api.upbit.com/v1/orders/chance"; static readonly MARKET_ALL_URL: "https://api.upbit.com/v1/market/all"; static readonly TICKER_URL: "https://api.upbit.com/v1/ticker"; static readonly CANDLES_MINUTES_URL: "https://api.upbit.com/v1/candles/minutes"; static readonly CANDLES_DAY_URL: "https://api.upbit.com/v1/candles/days"; static readonly CANDLES_WEEK_URL: "https://api.upbit.com/v1/candles/weeks"; static readonly CANDLES_MONTH_URL: "https://api.upbit.com/v1/candles/months"; static readonly API_KEYS_URL: "https://api.upbit.com/v1/api_keys"; static readonly ORDER_BOOK_URL: "https://api.upbit.com/v1/orderbook"; } export default Constants;