refactor(extensions): drop unused internal type aliases · openclaw/openclaw@cbff4fa
vincentkoc
·
2026-06-20
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -299,25 +299,6 @@ async function prepareCdpPageSession(send: CdpSendFn, sessionId?: string): Promi
|
299 | 299 | await send("Runtime.runIfWaitingForDebugger", undefined, sessionId).catch(() => {}); |
300 | 300 | } |
301 | 301 | |
302 | | -/** Runtime.evaluate remote-object subset used by CDP helpers. */ |
303 | | -export type CdpRemoteObject = { |
304 | | -type: string; |
305 | | -subtype?: string; |
306 | | -value?: unknown; |
307 | | -description?: string; |
308 | | -unserializableValue?: string; |
309 | | -preview?: unknown; |
310 | | -}; |
311 | | - |
312 | | -/** Exception details surfaced from CDP Runtime.evaluate. */ |
313 | | -export type CdpExceptionDetails = { |
314 | | -text?: string; |
315 | | -lineNumber?: number; |
316 | | -columnNumber?: number; |
317 | | -exception?: CdpRemoteObject; |
318 | | -stackTrace?: unknown; |
319 | | -}; |
320 | | - |
321 | 302 | /** Normalized accessibility tree node returned by ARIA snapshots. */ |
322 | 303 | export type AriaSnapshotNode = { |
323 | 304 | ref: string; |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。