lml-main
Version:
This is now a mono repository published into many standalone packages.
9 lines (8 loc) • 448 B
TypeScript
import { RootState } from '../../root';
import { JobStatusModel } from '@lml/cosmo-ts-data';
export declare const getCourierJobs: (state: RootState, courierRefId: string) => JobStatusModel[];
export declare const getCourierJobsSorted: ((state: RootState, props: string, ...args: any[]) => JobStatusModel[]) & {
resultFunc: (res: JobStatusModel[]) => JobStatusModel[];
recomputations: () => number;
resetRecomputations: () => number;
};