@chauffleet/expo-custom-map
Version:
Open source custom map library for Expo/React Native. Use your own tiles without Google Maps, Mapbox, or API keys. Created by ChaufFleet.
12 lines • 408 B
TypeScript
import { PerformanceStats, CacheStats } from '../types';
interface PerformanceHookResult {
stats: PerformanceStats;
cache: CacheStats;
startMonitoring: () => void;
stopMonitoring: () => void;
resetStats: () => void;
isMonitoring: boolean;
}
declare const useMapPerformance: () => PerformanceHookResult;
export default useMapPerformance;
//# sourceMappingURL=useMapPerformance.d.ts.map