/** MySQL connection settings, loaded from mysql.config.ts at the project root. */ export interface DbConfig { host: string; port: number; user: string; password: string; database: string; }