We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c65f59 commit 131a362Copy full SHA for 131a362
2 files changed
src/WaitForHelper.ts
@@ -3,10 +3,8 @@
3
* Copyright 2025 Google LLC
4
* SPDX-License-Identifier: Apache-2.0
5
*/
6
-import type {CdpPage} from 'puppeteer-core/internal/cdp/Page.js';
7
-
8
import {logger} from './logger.js';
9
-import type {Page, Protocol} from './third_party/puppeteer-core/index.js';
+import type {Page, Protocol, CdpPage} from './third_party/puppeteer-core/index.js';
10
11
export class WaitForHelper {
12
#abortController = new AbortController();
src/third_party/puppeteer-core/index.ts
@@ -7,3 +7,4 @@
export {Locator, PredefinedNetworkConditions} from 'puppeteer-core';
export {default as puppeteer} from 'puppeteer-core';
export type * from 'puppeteer-core';
+export type {CdpPage} from 'puppeteer-core/internal/cdp/Page.js';
0 commit comments