1export default interface ILaunchOptions { 2 showBrowser?: boolean; 3 executablePath: string; 4 proxyPort: number; 5 dumpio?: boolean; 6 env?: Record<string, string | undefined>; 7} 8 9