lml-main
Version:
This is now a mono repository published into many standalone packages.
19 lines (18 loc) • 862 B
TypeScript
import { JobLabelServiceCentreModel } from '@lml/cosmo-ts-data';
import { RootState } from '../../root';
export declare const getJobLabelServiceCentres: (state: RootState) => {
[refId: string]: JobLabelServiceCentreModel;
};
export declare const getJobLabelServiceCentreByCode: (state: RootState, code: string) => JobLabelServiceCentreModel;
export declare const getJobLabelServiceCentreArray: ((state: RootState) => JobLabelServiceCentreModel[]) & {
resultFunc: (res: {
[refId: string]: JobLabelServiceCentreModel;
}) => JobLabelServiceCentreModel[];
recomputations: () => number;
resetRecomputations: () => number;
};
export declare const getServiceCentresByRegion: ((state: RootState) => {}) & {
resultFunc: (res: JobLabelServiceCentreModel[]) => {};
recomputations: () => number;
resetRecomputations: () => number;
};