(...messages: Array<any>)
| 214 | return new EventTarget() |
| 215 | } |
| 216 | private debugLog(...messages: Array<any>) { |
| 217 | if (this.#debug) { |
| 218 | console.log('🌴 [tanstack-devtools:client-bus]', ...messages) |
| 219 | } |
| 220 | } |
| 221 | private connectSSE() { |
| 222 | this.debugLog('Connecting to SSE server') |
| 223 | this.#eventSource = new EventSource( |
no outgoing calls
no test coverage detected