Enhance documentation and type definitions for location tracking and property components

This commit is contained in:
2026-02-04 23:36:51 +05:30
parent d1e383baf5
commit 986266348a
5 changed files with 163 additions and 98 deletions

View File

@@ -3,9 +3,11 @@ export type { MapHandle } from './MapView';
export { Marker, Polyline, PROVIDER_GOOGLE } from 'react-native-maps';
export { CameraPresets } from './cameraPresets';
export { useLocationTracking } from './hooks/useLocationTracking';
export type { TrackingOptions, GeolocationAPI } from './hooks/useLocationTracking';
// High-level components
export { default as PropertyMap } from './components/PropertyMap';
export type { PropertyMapProps } from './components/PropertyMap';
export { default as PriceMarker } from './components/PriceMarker';
export { formatPrice } from './components/PriceMarker';
export type { PropertyItem } from './components/PriceMarker';
export type { PropertyItem, PriceMarkerProps } from './components/PriceMarker';