From 09e143a8b5bf07d07ce0ab96911c61d19e3102c2 Mon Sep 17 00:00:00 2001 From: Orion Kindel Date: Sun, 8 Oct 2023 12:21:34 -0500 Subject: [PATCH] fix: import --- src/Puppeteer.CDPSession.Command.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Puppeteer.CDPSession.Command.js b/src/Puppeteer.CDPSession.Command.js index e4f53df..7b6b0e8 100644 --- a/src/Puppeteer.CDPSession.Command.js +++ b/src/Puppeteer.CDPSession.Command.js @@ -1,6 +1,6 @@ -import { CDPSession } from 'puppeteer-core/src/puppeteer-core.js' +import { CDPSession } from 'puppeteer' -/** @typedef {import("puppeteer-core").ProtocolMapping.Commands} Commands */ +/** @typedef {import("puppeteer").ProtocolMapping.Commands} Commands */ /** @type {(_: Commands[T]['paramsType'][0]) => (_: T) => (_: CDPSession) => () => Promise} */ export const send = p => cmd => cdp => () => {