| 1 | type EventCallback = (data: any) => void; |
| 2 | |
| 3 | export class EventHub { |
| 4 | private static instance: EventHub; |
| 5 | private listeners: Map<string, Set<EventCallback>>; |
| 6 | private rnInstance: any; |
nothing calls this directly
no outgoing calls
no test coverage detected