lml-main
Version:
This is now a mono repository published into many standalone packages.
11 lines (10 loc) • 541 B
TypeScript
import { AppState } from '../../common/reducers';
import { JobsDataState, RootState } from '@lml/cosmo-redux-api';
import { JobStatusModel } from '@lml/cosmo-ts-data';
export declare const getJobKeys: ((state: RootState) => string[]) & {
resultFunc: (res: JobsDataState) => string[];
recomputations: () => number;
resetRecomputations: () => number;
};
export declare const getJobsNotInState: (state: AppState, jobStatuses: JobStatusModel[]) => string[];
export declare const getJobStatusDisplayValue: (status: string) => string;