2016-08-30 18:07:40 -07:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2019-07-03 16:15:15 -07:00
|
|
|
export {Data, DeprecatedLoadChildren, LoadChildren, LoadChildrenCallback, QueryParamsHandling, ResolveData, Route, Routes, RunGuardsAndResolvers, UrlMatchResult, UrlMatcher} from './config';
|
2016-08-30 18:07:40 -07:00
|
|
|
export {RouterLink, RouterLinkWithHref} from './directives/router_link';
|
|
|
|
export {RouterLinkActive} from './directives/router_link_active';
|
|
|
|
export {RouterOutlet} from './directives/router_outlet';
|
2018-05-17 07:33:50 -04:00
|
|
|
export {ActivationEnd, ActivationStart, ChildActivationEnd, ChildActivationStart, Event, GuardsCheckEnd, GuardsCheckStart, NavigationCancel, NavigationEnd, NavigationError, NavigationStart, ResolveEnd, ResolveStart, RouteConfigLoadEnd, RouteConfigLoadStart, RouterEvent, RoutesRecognized, Scroll} from './events';
|
2016-08-30 18:07:40 -07:00
|
|
|
export {CanActivate, CanActivateChild, CanDeactivate, CanLoad, Resolve} from './interfaces';
|
2016-11-29 23:21:41 -08:00
|
|
|
export {DetachedRouteHandle, RouteReuseStrategy} from './route_reuse_strategy';
|
2018-11-29 10:07:24 -08:00
|
|
|
export {Navigation, NavigationExtras, Router} from './router';
|
2017-02-15 13:30:40 -08:00
|
|
|
export {ROUTES} from './router_config_loader';
|
2019-09-17 01:14:04 +03:00
|
|
|
export {ExtraOptions, InitialNavigation, ROUTER_CONFIGURATION, ROUTER_INITIALIZER, RouterModule, provideRoutes} from './router_module';
|
2017-05-17 17:47:34 -07:00
|
|
|
export {ChildrenOutletContexts, OutletContext} from './router_outlet_context';
|
2016-11-09 13:33:33 -08:00
|
|
|
export {NoPreloading, PreloadAllModules, PreloadingStrategy, RouterPreloader} from './router_preloader';
|
2016-08-30 18:07:40 -07:00
|
|
|
export {ActivatedRoute, ActivatedRouteSnapshot, RouterState, RouterStateSnapshot} from './router_state';
|
2017-03-20 09:19:25 -07:00
|
|
|
export {PRIMARY_OUTLET, ParamMap, Params, convertToParamMap} from './shared';
|
2016-10-20 10:44:44 -07:00
|
|
|
export {UrlHandlingStrategy} from './url_handling_strategy';
|
|
|
|
export {DefaultUrlSerializer, UrlSegment, UrlSegmentGroup, UrlSerializer, UrlTree} from './url_tree';
|
2016-12-06 16:21:07 -08:00
|
|
|
export {VERSION} from './version';
|
2017-02-15 13:30:40 -08:00
|
|
|
|
2017-09-22 19:51:03 +02:00
|
|
|
export * from './private_export';
|