import { IAccountProps, IApiKeyStatusProps, IOrderChanceProps } from "../@types/exchange"; import ExchangeInterface from "../interface/ExchangeInterface"; import CustomAxios from "./CustomAxios"; export default class ExchangeService extends CustomAxios implements ExchangeInterface { constructor(UBIT_ACCESS_KEY: string, UBIT_SECRET_KEY: string); getAllAccount(): Promise; getOrderChance(coin: string): Promise; getApiKeyStatus(): Promise; }