/** * Result of parsing command-line arguments. CLI flags have the highest priority in the configuration merge order. */ export interface ParsedArgs { chromeDataDir?: string; consoleLogging: boolean; dataDir?: string; debugLogging: boolean; logFile?: string; port?: number; }