Skip to content

Commit 0379987

Browse files
committed
Use explicit type imports
We're not using a bundler yet so let's not encourage value imports.
1 parent ebedfe0 commit 0379987

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DevToolsPlugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Step, UserFlow } from "@puppeteer/replay"
1+
import type { Step, UserFlow } from "@puppeteer/replay"
22

33
export class RecorderPlugin {
44
async stringify(recording: UserFlow) {

types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Step, UserFlow } from "@puppeteer/replay"
1+
import type { Step, UserFlow } from "@puppeteer/replay"
22

33
declare global {
44
/** Use the chrome.devtools.recorder API to customize the Recorder panel in DevTools. */

0 commit comments

Comments
 (0)