/** * @license * Copyright 2017 Google Inc. * SPDX-License-Identifier: Apache-2.0 */ export * from './index.js'; import {PuppeteerNode} from './node/PuppeteerNode.js'; /** * @public */ const puppeteer = new PuppeteerNode({ isPuppeteerCore: true, }); export const { /** * @public */ connect, /** * @public */ defaultArgs, /** * @public */ executablePath, /** * @public */ launch, } = puppeteer; export default puppeteer;