@sotatech/nest-quickfix
Version:
A powerful NestJS implementation of the FIX (Financial Information eXchange) protocol. Provides high-performance, reliable messaging for financial trading applications with built-in session management, message validation, and recovery mechanisms.
14 lines (13 loc) • 409 B
TypeScript
import { FIXConfig } from './fix.config';
export declare class EnvConfig {
FIX_HOST: string;
FIX_PORT: number;
FIX_SENDER_COMP_ID: string;
FIX_TARGET_COMP_ID: string;
FIX_HEARTBEAT_INTERVAL: number;
FIX_LOG_FILE?: string;
}
export declare class ConfigValidator {
static validate(config: Record<string, unknown>): EnvConfig;
static validateFIXConfig(config: FIXConfig): void;
}