lml-main
Version:
This is now a mono repository published into many standalone packages.
11 lines (10 loc) • 352 B
TypeScript
import * as React from 'react';
import { CourierModel, LocationModel } from '@lml/cosmo-ts-data';
export interface CourierMapProps {
refId: string;
}
export interface CourierMapComponentProps extends CourierMapProps {
courier: CourierModel;
location: LocationModel;
}
export declare const CourierMap: React.ComponentClass<CourierMapProps>;