From 7dcf7658b28392c60ccc0aff68621009c0b0931a Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Sun, 28 Jun 2026 17:48:30 +0900 Subject: [PATCH] fix --- .github/scripts/frontend-browser-detailed-html.mts | 2 +- .github/scripts/frontend-browser-report.mts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/frontend-browser-detailed-html.mts b/.github/scripts/frontend-browser-detailed-html.mts index d53509636e..34240eefc6 100644 --- a/.github/scripts/frontend-browser-detailed-html.mts +++ b/.github/scripts/frontend-browser-detailed-html.mts @@ -7,7 +7,7 @@ import { readFile, writeFile } from 'node:fs/promises'; import { pathToFileURL } from 'node:url'; import * as util from './utility.mts'; import type { BrowserMeasurementSample, BrowserMetricsReport } from './frontend-browser-report.mts'; -import { NetworkRequest } from './chrome.mts'; +import type { NetworkRequest } from './chrome.mts'; type DiffDirection = 'added' | 'removed'; diff --git a/.github/scripts/frontend-browser-report.mts b/.github/scripts/frontend-browser-report.mts index 8c911439ba..3746c35ad8 100644 --- a/.github/scripts/frontend-browser-report.mts +++ b/.github/scripts/frontend-browser-report.mts @@ -8,7 +8,7 @@ import { pathToFileURL } from 'node:url'; import * as util from './utility.mts'; import * as heapSnapshotUtil from './heap-snapshot-util.mts'; import type { HeapSnapshotData, HeapSnapshotReport } from './heap-snapshot-util.mts'; -import { NetworkRequest } from './chrome.mts'; +import type { NetworkRequest } from './chrome.mts'; export type BrowserMeasurement = { label: string;