Revision 2a3db67cdf2855195b5e1c207f7d682182f9a415 authored by Andrew Kushnir on 25 April 2024, 15:31:00 UTC, committed by Andrew Kushnir on 25 April 2024, 15:34:43 UTC
1 parent e478180
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