From 4e720c8ebfecec89af79b207aab5f9b67a0d5505 Mon Sep 17 00:00:00 2001 From: Ryan Manuel Date: Wed, 11 Oct 2023 15:27:27 -0500 Subject: [PATCH] chore: fix types breaking due to exposing too much inside of protocol.ts (#28035) --- packages/types/src/protocol.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/src/protocol.ts b/packages/types/src/protocol.ts index f6737c7e1454..e1c8e425201c 100644 --- a/packages/types/src/protocol.ts +++ b/packages/types/src/protocol.ts @@ -2,7 +2,7 @@ import type { Database } from 'better-sqlite3' import type ProtocolMapping from 'devtools-protocol/types/protocol-mapping' import type { IncomingHttpHeaders } from 'http' import type { Readable } from 'stream' -import type { ProxyTimings } from '@packages/types' +import type { ProxyTimings } from './proxy' type Commands = ProtocolMapping.Commands type Command = Commands[T]