| 3 | export type BridgeEventHandler<Event extends BridgeEvent = BridgeEvent> = (event: Event) => void; |
| 4 | |
| 5 | export class Bridge { |
| 6 | private readonly target: Window; |
| 7 | private readonly origin: string; |
| 8 | private readonly abort = new AbortController(); |
nothing calls this directly
no outgoing calls
no test coverage detected