lml-main
Version:
This is now a mono repository published into many standalone packages.
17 lines (16 loc) • 660 B
TypeScript
import { AbstractJobField, AbstractJobFieldProps } from './abstract-field';
export declare class CollectByField extends AbstractJobField<AbstractJobFieldProps> {
render(): JSX.Element;
}
export declare class DeliverByField extends AbstractJobField<AbstractJobFieldProps> {
render(): JSX.Element;
}
/**
* NOTE: there is no completedAt field
* to get the completed at time you must got to the JobStatusModel
* and check that the status is completed. If so then then the completed time
* will be availble form the timestamp field
*/
export declare class CompletedAtField extends AbstractJobField<AbstractJobFieldProps> {
render(): JSX.Element;
}