Revision 4876ed9510c7d6078ce6b04a64c81000e751dc8c authored by Doug Parker on 02 February 2024, 01:25:32 UTC, committed by Alex Rickabaugh on 16 March 2024, 01:11:33 UTC
Now that we have real ES modules, there's no need for the prefix convention.

PR Close #53443
1 parent d90b684
Raw File
browser-providers.conf.d.ts
type CustomLauncher = {
  base: string;
  browserName: string;
  platformName: string;
  platformVersion: string;
  deviceName: string;
  appiumVersion: string;
  extendedDebugging: boolean;
}

type CustomLaunchers = {
  [string]: CustomLauncher;
};

type SauceAliases = {
  [string]: string[];
};

export const customLaunchers: CustomLaunchers;
export const sauceAliases: SauceAliases;
back to top