2021-11-15 22:55:37 +08:00
|
|
|
/*---------------------------------------------------------------------------------------------
|
|
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
|
2022-10-18 20:20:09 +08:00
|
|
|
/* keeping TS happy */
|
|
|
|
exports.__nothing = undefined;
|
|
|
|
|
|
|
|
/** @typedef {'chromium'|'firefox'|'webkit'} BrowserKind */
|
2022-10-19 01:49:55 +08:00
|
|
|
/** @typedef {'amd'|'webpack'|'esbuild'|'vite'|'parcel'} PackagerKind */
|
2022-10-18 20:20:09 +08:00
|
|
|
/** @typedef {{browser:BrowserKind; packager:PackagerKind; debugTests:boolean; port:number;}} TestInfo */
|