import { AuthenticationRequest } from "./AuthenticationRequest"; import { AuthenticationSuccessResponse } from "./AuthenticationSuccessResponse"; import { AuthenticationFailedResponse } from "./AuthenticationFailedResponse"; import { CryptoExecutorAccountConnectionStatus } from "./CryptoExecutorAccountConnectionStatus"; /** * Represents messages of authentication. */ export interface AuthenticationMessages { AuthenticationRequest: new () => AuthenticationRequest, AuthenticationSuccessResponse: new () => AuthenticationSuccessResponse, AuthenticationFailedResponse: new () => AuthenticationFailedResponse, CryptoExecutorAccountConnectionStatus: new () => CryptoExecutorAccountConnectionStatus }