lml-main
Version:
This is now a mono repository published into many standalone packages.
11 lines (10 loc) • 408 B
TypeScript
import * as React from 'react';
import { JobStatusModel } from '@lml/cosmo-ts-data';
export interface CourierJobsProps {
courierRefId: string;
}
export interface CourierJobsComponentProps extends CourierJobsProps {
jobsByStatus: JobStatusModel[];
fetchCourierJobs: (refId: string, showData?: string, args?: any) => any;
}
export declare const CourierJobs: React.ComponentClass<CourierJobsProps>;