mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
21 lines
387 B
TypeScript
21 lines
387 B
TypeScript
|
|
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;
|