mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-29 04:26:38 +00:00
12 lines
399 B
TypeScript
12 lines
399 B
TypeScript
/** Host debugging is served directly by the Worker-side Node inspector adapter. */
|
|
|
|
import type { InspectorSourceCapability } from '../../shared/bridge/messages/observation.ts'
|
|
|
|
/**
|
|
* Describe Host debugger transport ownership.
|
|
* @returns No Host-main-thread Debugger bridge capability.
|
|
*/
|
|
export function debuggerBridgeCapability(): InspectorSourceCapability | undefined {
|
|
return undefined
|
|
}
|