Add unified mcpLog for relay server and stderr logging

This commit is contained in:
Tommy D. Rossi
2025-12-31 22:41:32 +01:00
parent 240ce5be74
commit c15cf5947a
4 changed files with 31 additions and 20 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ The Editor class provides a Claude Code-like interface for viewing and editing w
## Types
```ts
import type { CDPSession } from './cdp-session.js';
import type { ICDPSession } from './cdp-session.js';
export interface ReadResult {
content: string;
totalLines: number;
@@ -55,7 +55,7 @@ export declare class Editor {
private stylesheets;
private sourceCache;
constructor({ cdp }: {
cdp: CDPSession;
cdp: ICDPSession;
});
private setupEventListeners;
/**