lml-main
Version:
This is now a mono repository published into many standalone packages.
8 lines (7 loc) • 530 B
TypeScript
import { AppState } from '../../common/reducers';
import { CourierModel } from '@lml/cosmo-ts-data';
import { MarkerModel, DirectionsModel } from '../../mapping/data';
export declare const courierDirections: (state: AppState, courier: CourierModel) => DirectionsModel;
export declare const getCourierMarker: (state: AppState, refId: string) => MarkerModel;
export declare const getCourierMarkers: (state: AppState, refIds: string[]) => MarkerModel[];
export declare const getActiveCourierMarker: (state: AppState) => MarkerModel;