UNPKG

535 BTypeScriptView Raw
1import { ActivatedRouteSnapshot } from "@angular/router";
2import { ReduxRouterRoute, ReduxRouterParams } from "./redux-router.types";
3export declare const rebuildStateTree: (rootState: ActivatedRouteSnapshot, key: string) => ReduxRouterParams;
4export declare const getPath: (url?: string) => string;
5export declare const getFragment: (url?: string) => string;
6export declare const getData: (rootState: ActivatedRouteSnapshot) => any;
7export declare const routesAreEqual: (current: ReduxRouterRoute, next: ReduxRouterRoute) => boolean;