UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

20 lines (19 loc) 644 B
import { AnyAction } from 'redux'; import { MapBoundsState } from './bounds'; import { MapDirectionsState } from './directions'; import { MapFlagsState } from './flags'; import { MapFilterState } from './filters'; import { MapMarkersState } from './markers'; export interface MapState { bounds: MapBoundsState; directions: MapDirectionsState; flags: MapFlagsState; filters: MapFilterState; markers: MapMarkersState; } export * from './bounds'; export * from './directions'; export * from './flags'; export * from './filters'; export * from './markers'; export declare const mapReducer: (state: {}, action: AnyAction) => {};