UNPKG

lml-main

Version:

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

15 lines (14 loc) 578 B
import * as React from 'react'; import { CourierModel } from '@lml/cosmo-ts-data'; export interface CourierActionBoxProps { courier: CourierModel; } export interface CourierActionBoxComponentProps extends CourierActionBoxProps { active: boolean; expanded: boolean; setExpandedCourier: (refId: string) => any; unsetExpandedCourier: (refId: string) => any; showCourierDetails: (refId: string) => any; showCourierChangeFrequencyModal: (courier: CourierModel) => any; } export declare const CourierActionBox: React.ComponentClass<CourierActionBoxProps>;