@expofp/floorplan
Version:
Interactive floor plan library for expos and events
14 lines • 565 B
TypeScript
import { type MaplibreViewMode } from '../../store/MaplibreStore';
/**
* Main MobX adapter component that bridges application state to the
* state-agnostic MaplibreWrapper.
*
* Reused renderer config modules still read singleton stores internally;
* MaplibreWrapper itself remains pure and decoupled from application state.
*/
interface MaplibreAdapterProps {
viewMode: MaplibreViewMode;
}
declare const MaplibreAdapter: import("react").FunctionComponent<MaplibreAdapterProps>;
export default MaplibreAdapter;
//# sourceMappingURL=MaplibreAdapter.d.ts.map