@expofp/floorplan
Version:
Interactive floor plan library for expos and events
10 lines • 417 B
TypeScript
import { type BoothBase } from '../store/BoothStore';
import { type Exhibitor } from '../store/ExhibitorStore';
import { type HeatmapYah } from '../store/HeatmapStore';
type SupportedItem = BoothBase | Exhibitor | HeatmapYah | undefined;
declare const useHeatmapData: (item: SupportedItem) => {
clicks: number;
background: string;
};
export default useHeatmapData;
//# sourceMappingURL=useHeatmapData.d.ts.map