diff --git a/server/src/types/index.ts b/server/src/types/index.ts index dfcaa12f..44647d9a 100644 --- a/server/src/types/index.ts +++ b/server/src/types/index.ts @@ -10,3 +10,18 @@ export interface InterpreterSettings { debug: boolean; params?: any; } + + +/** + * Options for the {@link BrowserManagement.launch} method. + * Wraps the Playwright's launchOptions and adds an extra browser option. + * The browser option determines which browser to launch as Playwright + * supports multiple browsers. (chromium, firefox, webkit) + * -- Possible expansion for the future of the browser recorder -- + * @category Types + */ +export interface RemoteBrowserOptions { + browser: BrowserType + launchOptions: LaunchOptions +}; +