Type Alias BeaconEventHandlerMap

BeaconEventHandlerMap: {
    Beacon.Destroy: ((beaconIdentifier: string) => void);
    Beacon.LivenessChange: ((isLive: boolean, beacon: Beacon) => void);
    Beacon.LocationUpdate: ((locationState: BeaconLocationState) => void);
    Beacon.update: ((event: MatrixEvent, beacon: Beacon) => void);
}