import { IAccountProps, IApiKeyStatusProps, IOrderChanceProps } from "../@types/exchange"; export default interface ExchangeInterface { getAllAccount: () => Promise; getOrderChance: (coin: string) => Promise; getApiKeyStatus: () => Promise; }