@expofp/floorplan
Version:
Interactive floor plan library for expos and events
13 lines • 560 B
TypeScript
import React from 'react';
import { type GpsPosition } from './types';
interface GpsManagerProps {
requestCompass: boolean;
requestCompassAllowed: boolean;
onPositionUpdate: (pos: GpsPosition) => void;
onRejectCompass?: () => void;
onAllowCompass?: () => void;
orientationStorageKey?: string;
}
export default function GpsManager({ onPositionUpdate, onAllowCompass, onRejectCompass, orientationStorageKey, requestCompass, requestCompassAllowed, }: GpsManagerProps): React.JSX.Element;
export {};
//# sourceMappingURL=GpsManager.d.ts.map