react-native-notificare-geo
Version:
Notificare Geo React Native module.
15 lines • 661 B
TypeScript
import type { TurboModule } from 'react-native';
import type { NotificareRegion } from './models/notificare-region';
export interface Spec extends TurboModule {
addListener: (eventType: string) => void;
removeListeners: (count: number) => void;
hasLocationServicesEnabled(): Promise<boolean>;
hasBluetoothEnabled(): Promise<boolean>;
getMonitoredRegions(): Promise<NotificareRegion[]>;
getEnteredRegions(): Promise<NotificareRegion[]>;
enableLocationUpdates(): Promise<void>;
disableLocationUpdates(): Promise<void>;
}
declare const _default: Spec;
export default _default;
//# sourceMappingURL=NativeNotificareGeoModule.d.ts.map