mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 20:52:56 +01:00
11 lines
638 B
JavaScript
11 lines
638 B
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
/* keeping TS happy */
|
|
exports.__nothing = undefined;
|
|
|
|
/** @typedef {'chromium'|'firefox'|'webkit'} BrowserKind */
|
|
/** @typedef {'amd'|'webpack'|'esbuild'|'vite'} PackagerKind */
|
|
/** @typedef {{browser:BrowserKind; packager:PackagerKind; debugTests:boolean; port:number;}} TestInfo */
|