From f2bba2512b27a6ece2ee0a7472aedd7aedaf4c3b Mon Sep 17 00:00:00 2001 From: "Tommy D. Rossi" Date: Sat, 22 Nov 2025 11:02:24 +0100 Subject: [PATCH] type method string --- extension/src/relayConnection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension/src/relayConnection.ts b/extension/src/relayConnection.ts index d52161f..21e373e 100644 --- a/extension/src/relayConnection.ts +++ b/extension/src/relayConnection.ts @@ -222,7 +222,7 @@ export class RelayConnection { this._onCloseCallback?.(); } - private _onDebuggerEvent = (source: chrome.debugger.DebuggerSession, method: string, params: any): void => { + private _onDebuggerEvent = (source: chrome.debugger.DebuggerSession, method: CDPEvent['method'], params: any): void => { const tab = this._attachedTabs.get(source.tabId!); if (!tab) return;