(type: string, payload: Record<string, unknown>)
| 313 | } |
| 314 | |
| 315 | private _observe(type: string, payload: Record<string, unknown>): void { |
| 316 | wsChannel.publish({ |
| 317 | type, |
| 318 | name: this._name, |
| 319 | payload: { ...payload, namespace: this.namespace }, |
| 320 | timestamp: Date.now() |
| 321 | }); |
| 322 | } |
| 323 | |
| 324 | // ── Lazy table init ───────────────────────────────────────────── |
| 325 |
no outgoing calls
no test coverage detected