import { CryptoAccountInfo } from "./CryptoAccountInfo"; import { CryptoAccountInfoUpdate } from "./CryptoAccountInfoUpdate"; import { AccountCryptoOpenUpdate } from "./AccountCryptoOpenUpdate"; import { CryptoRiskInfo } from "./CryptoRiskInfo"; import { CryptoTradingStatistic } from "./CryptoTradingStatistic"; import { UserCryptoAccountLinkInfo } from "./UserCryptoAccountLinkInfo"; /** * Represents messages of manager. */ export interface ManagerMessages { CryptoAccountInfo: new () => CryptoAccountInfo, CryptoAccountInfoUpdate: new () => CryptoAccountInfoUpdate, AccountCryptoOpenUpdate: new () => AccountCryptoOpenUpdate, CryptoRiskInfo: new () => CryptoRiskInfo, CryptoTradingStatistic: new () => CryptoTradingStatistic, UserCryptoAccountLinkInfo: new () => UserCryptoAccountLinkInfo }