lml-main
Version:
This is now a mono repository published into many standalone packages.
12 lines (11 loc) • 489 B
TypeScript
export * from './bounds';
export * from './directions';
export * from './filters';
export * from './flags';
export * from './markers';
import { MapBoundsAction } from './bounds';
import { MapDirectionsAction } from './directions';
import { MapFilterAction } from './filters';
import { MapFlagsAction } from './flags';
import { MapMarkersAction } from './markers';
export declare type MapAction = MapBoundsAction | MapDirectionsAction | MapFilterAction | MapFlagsAction | MapMarkersAction;