lml-main
Version:
This is now a mono repository published into many standalone packages.
13 lines (12 loc) • 551 B
TypeScript
import { PlaceModel } from '@lml/cosmo-ts-data';
import { RootState } from '../../root';
import { PlacesDataByIdState } from '../../places/reducers/place';
export declare const getPlaces: (state: RootState) => PlacesDataByIdState;
export declare const getPlaceById: (state: RootState, id: string) => PlaceModel;
export declare const getPlacesArray: ((state: RootState) => PlaceModel[]) & {
resultFunc: (res: {
[refId: string]: PlaceModel;
}) => PlaceModel[];
recomputations: () => number;
resetRecomputations: () => number;
};