@molin.ai/rebrowser-cloudflare-puppeteer-core
Version: 
A high-level API to control headless Chrome over the DevTools Protocol
26 lines (20 loc) • 353 B
text/typescript
/**
 * @license
 * Copyright 2017 Google Inc.
 * SPDX-License-Identifier: Apache-2.0
 */
export * from './index-browser.js';
import {Puppeteer} from './common/Puppeteer.js';
/**
 * @public
 */
const puppeteer = new Puppeteer({
  isPuppeteerCore: true,
});
export const {
  /**
   * @public
   */
  connect,
} = puppeteer;
export default puppeteer;