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-26 17:39:02 -04:00
|
|
|
export {CanActivate, CanActivateChild, CanDeactivate, CanLoad, Resolve} from './src/interfaces';
|
2016-07-18 19:42:33 -04:00
|
|
|
export {Event, NavigationCancel, NavigationEnd, NavigationError, NavigationExtras, NavigationStart, Router, RoutesRecognized} from './src/router';
|
2016-07-18 06:50:31 -04:00
|
|
|
export {ROUTER_DIRECTIVES, RouterModule, RouterModuleWithoutProviders} 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-07-25 15:15:07 -04:00
|
|
|
export {DefaultUrlSerializer, UrlSegment, UrlSerializer, UrlTree} from './src/url_tree';
|