UNPKG

@debugmcp/mcp-debugger

Version:

Step-through debugging MCP server for LLMs

17 lines 588 B
/** * Core interfaces and types for the DAP Proxy system * These abstractions enable dependency injection and testability */ // ===== State Management ===== /** * Proxy worker state for state machine pattern */ export var ProxyState; (function (ProxyState) { ProxyState["UNINITIALIZED"] = "uninitialized"; ProxyState["INITIALIZING"] = "initializing"; ProxyState["CONNECTED"] = "connected"; ProxyState["SHUTTING_DOWN"] = "shutting_down"; ProxyState["TERMINATED"] = "terminated"; })(ProxyState || (ProxyState = {})); //# sourceMappingURL=dap-proxy-interfaces.js.map