main.d.ts 992 B

123456789101112131415
  1. /**
  2. * @license
  3. * Copyright 2023 Google Inc.
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. export type { LaunchOptions, ComputeExecutablePathOptions as Options, SystemOptions, } from './launch.js';
  7. export { launch, computeExecutablePath, computeSystemExecutablePath, TimeoutError, CDP_WEBSOCKET_ENDPOINT_REGEX, WEBDRIVER_BIDI_WEBSOCKET_ENDPOINT_REGEX, Process, } from './launch.js';
  8. export type { InstallOptions, GetInstalledBrowsersOptions, UninstallOptions, } from './install.js';
  9. export { install, getInstalledBrowsers, canDownload, uninstall, } from './install.js';
  10. export { detectBrowserPlatform } from './detectPlatform.js';
  11. export type { ProfileOptions } from './browser-data/browser-data.js';
  12. export { resolveBuildId, Browser, BrowserPlatform, ChromeReleaseChannel, createProfile, getVersionComparator, } from './browser-data/browser-data.js';
  13. export { CLI, makeProgressCallback } from './CLI.js';
  14. export { Cache, InstalledBrowser } from './Cache.js';
  15. //# sourceMappingURL=main.d.ts.map