2016-06-23 12:47:54 -04: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
|
|
|
|
*/
|
|
|
|
|
2016-06-21 13:35:42 -04:00
|
|
|
|
2016-07-06 19:19:52 -04:00
|
|
|
export {ExtraOptions, provideRouterConfig, provideRoutes} from './src/common_router_providers';
|
|
|
|
export {Data, ResolveData, Route, RouterConfig, Routes} from './src/config';
|
2016-06-29 18:26:04 -04:00
|
|
|
export {RouterLink, RouterLinkWithHref} from './src/directives/router_link';
|
|
|
|
export {RouterLinkActive} from './src/directives/router_link_active';
|
|
|
|
export {RouterOutlet} from './src/directives/router_outlet';
|
2016-07-13 18:15:20 -04:00
|
|
|
export {CanActivate, CanActivateChild, CanDeactivate, Resolve} from './src/interfaces';
|
2016-06-21 13:35:42 -04:00
|
|
|
export {Event, NavigationCancel, NavigationEnd, NavigationError, NavigationStart, Router, RoutesRecognized} from './src/router';
|
2016-07-07 14:59:08 -04:00
|
|
|
export {ROUTER_DIRECTIVES, RouterModule} from './src/router_module';
|
2016-06-21 13:35:42 -04:00
|
|
|
export {RouterOutletMap} from './src/router_outlet_map';
|
|
|
|
export {provideRouter} from './src/router_providers';
|
|
|
|
export {ActivatedRoute, ActivatedRouteSnapshot, RouterState, RouterStateSnapshot} from './src/router_state';
|
|
|
|
export {PRIMARY_OUTLET, Params} from './src/shared';
|
2016-06-21 14:56:40 -04:00
|
|
|
export {DefaultUrlSerializer, UrlPathWithParams, UrlSerializer, UrlTree} from './src/url_tree';
|