UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

20 lines (19 loc) 834 B
import { AppState } from '../../common/reducers'; import { LocationChangeAction } from 'react-router-redux'; export declare const getPathname: (state: AppState) => string; export declare const getPaths: ((state: AppState) => string[]) & { resultFunc: (res: string) => string[]; recomputations: () => number; resetRecomputations: () => number; }; export declare const getAllocationPage: ((state: AppState) => string) & { resultFunc: (res: string[]) => string; recomputations: () => number; resetRecomputations: () => number; }; export declare const getPageFromAction: (action: LocationChangeAction) => string; export declare const isManualAllocationRoute: ((state: AppState) => boolean) & { resultFunc: (res: string[]) => boolean; recomputations: () => number; resetRecomputations: () => number; };