| 65 | } |
| 66 | |
| 67 | interface BridgeHotChannel { |
| 68 | on?: (event: string, cb: (data: any) => void) => void |
| 69 | off?: (event: string, cb: (data: any) => void) => void |
| 70 | send?: (event: string, data: any) => void |
| 71 | } |
| 72 | interface BridgeServerLike { |
| 73 | environments: Record<string, { hot?: BridgeHotChannel | null } | undefined> |
| 74 | } |
nothing calls this directly
no outgoing calls
no test coverage detected