lml-main
Version:
This is now a mono repository published into many standalone packages.
12 lines (11 loc) • 381 B
TypeScript
import * as React from 'react';
import { CourierStopModel } from '@lml/cosmo-ts-data';
export interface CourierStopProps {
label: string;
stop: CourierStopModel;
last: boolean;
}
export interface CourierStopComponentProps extends CourierStopProps {
showJobDetails: (refId: string) => any;
}
export declare const CourierStop: React.ComponentClass<CourierStopProps>;