Files
home-automation/frontend/src/map/index.ts
T

19 lines
474 B
TypeScript
Raw Normal View History

/**
* Public surface of the map module (M2-T09).
* Only RecordsMap.tsx imports leaflet — external code should not.
*/
export { RecordsMap } from './RecordsMap'
export type { RecordsMapProps } from './RecordsMap'
export {
locationsToHeatPoints,
pooToHeatPoints,
locationsToMapPoints,
pooToMapPoints,
filterPooByTimeWindow,
daysAgoISO,
nowISO,
computeCenter,
} from './mapUtils'
export type { HeatPoint, LocationMapPoint, PooMapPoint } from './mapUtils'