| 6 | */ |
| 7 | |
| 8 | export interface BridgeMessage { |
| 9 | __akita_bridge: true; |
| 10 | version: number; |
| 11 | type: string; |
| 12 | requestId?: string; |
| 13 | payload?: Record<string, unknown>; |
| 14 | } |
| 15 | |
| 16 | export interface BridgeContext { |
| 17 | theme: string; |
nothing calls this directly
no outgoing calls
no test coverage detected