lml-main
Version:
This is now a mono repository published into many standalone packages.
11 lines (10 loc) • 570 B
TypeScript
import * as React from 'react';
import { SelectedCourierAction } from '../../../couriers/data';
import { CourierActionModel } from '@lml/cosmo-ts-data';
import { StylableComponentProps } from 'cosmoui';
export interface CourierActionFormProps extends StylableComponentProps {
jobRefId: string;
onCancel: () => any;
}
export declare const getAvailableCourierActions: (currentCourierAction: CourierActionModel, currentType: string, stopType: string) => SelectedCourierAction[];
export declare const CourierActionForm: React.ComponentClass<CourierActionFormProps>;