lml-main
Version:
This is now a mono repository published into many standalone packages.
11 lines (10 loc) • 381 B
TypeScript
import * as React from 'react';
import { CourierModel } from '@lml/cosmo-ts-data';
export interface CourierTableRowProps {
refId: string;
}
export interface CourierTableRowComponentProps extends CourierTableRowProps {
courier: CourierModel;
showCourierDetails: (refId: string) => any;
}
export declare const CourierTableRow: React.ComponentClass<CourierTableRowProps>;