UNPKG

399 BTypeScriptView Raw
1import { RoutesRecognized, NavigationCancel, NavigationEnd } from "@angular/router";
2import { ReduxRouterAction } from "./redux-router.types";
3export declare const initRouteChange: (route: RoutesRecognized) => ReduxRouterAction;
4export declare const cancelRouteChange: (route: NavigationCancel) => ReduxRouterAction;
5export declare const endRouteChange: (route: NavigationEnd) => ReduxRouterAction;