2023-03-14 11:01:11 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2023 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-09-26 16:24:24 +00:00
|
|
|
export type {
|
|
|
|
LaunchOptions,
|
|
|
|
ComputeExecutablePathOptions as Options,
|
|
|
|
SystemOptions,
|
|
|
|
} from './launch.js';
|
2023-03-14 11:01:11 +00:00
|
|
|
export {
|
|
|
|
launch,
|
|
|
|
computeExecutablePath,
|
|
|
|
computeSystemExecutablePath,
|
2023-04-04 11:58:32 +00:00
|
|
|
TimeoutError,
|
2023-03-14 11:01:11 +00:00
|
|
|
CDP_WEBSOCKET_ENDPOINT_REGEX,
|
|
|
|
WEBDRIVER_BIDI_WEBSOCKET_ENDPOINT_REGEX,
|
2023-04-06 12:50:22 +00:00
|
|
|
Process,
|
2023-04-06 11:23:28 +00:00
|
|
|
} from './launch.js';
|
2023-09-26 16:24:24 +00:00
|
|
|
export type {
|
|
|
|
InstallOptions,
|
|
|
|
GetInstalledBrowsersOptions,
|
|
|
|
UninstallOptions,
|
|
|
|
} from './install.js';
|
2023-05-15 09:51:42 +00:00
|
|
|
export {
|
|
|
|
install,
|
|
|
|
getInstalledBrowsers,
|
|
|
|
canDownload,
|
|
|
|
uninstall,
|
|
|
|
} from './install.js';
|
2023-03-14 11:01:11 +00:00
|
|
|
export {detectBrowserPlatform} from './detectPlatform.js';
|
2023-09-26 16:24:24 +00:00
|
|
|
export type {ProfileOptions} from './browser-data/browser-data.js';
|
2023-03-14 17:22:25 +00:00
|
|
|
export {
|
2023-03-22 09:04:41 +00:00
|
|
|
resolveBuildId,
|
2023-03-14 17:22:25 +00:00
|
|
|
Browser,
|
|
|
|
BrowserPlatform,
|
|
|
|
ChromeReleaseChannel,
|
2023-04-04 11:58:32 +00:00
|
|
|
createProfile,
|
2023-03-16 07:16:44 +00:00
|
|
|
} from './browser-data/browser-data.js';
|
2023-03-22 09:04:41 +00:00
|
|
|
export {CLI, makeProgressCallback} from './CLI.js';
|
2023-04-21 09:34:03 +00:00
|
|
|
export {Cache, InstalledBrowser} from './Cache.js';
|