UNPKG

lml-main

Version:

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

15 lines (14 loc) 531 B
import * as React from 'react'; import { JobModel, JobStatusModel, JobAuditModel, CourierModel } from '@lml/cosmo-ts-data'; export interface JobDetailProps { refId: string; showMap?: boolean; } export interface JobDetailComponentProps extends JobDetailProps { audit: JobAuditModel[]; job: JobModel | null; jobStatus: JobStatusModel | null; courier: CourierModel; fetchJobById: (refId: string, showData: string, args?: any) => any; } export declare const JobDetail: React.ComponentClass<JobDetailProps>;