2016-06-23 09:47:54 -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
|
|
|
|
*/
|
|
|
|
|
2016-06-21 10:35:42 -07:00
|
|
|
|
2016-07-06 16:19:52 -07:00
|
|
|
export {ExtraOptions, provideRouterConfig, provideRoutes} from './src/common_router_providers';
|
|
|
|
export {Data, ResolveData, Route, RouterConfig, Routes} from './src/config';
|
2016-06-29 15:26:04 -07: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 14:39:02 -07:00
|
|
|
export {CanActivate, CanActivateChild, CanDeactivate, CanLoad, Resolve} from './src/interfaces';
|
2016-07-18 16:42:33 -07:00
|
|
|
export {Event, NavigationCancel, NavigationEnd, NavigationError, NavigationExtras, NavigationStart, Router, RoutesRecognized} from './src/router';
|
2016-07-27 09:54:19 -07:00
|
|
|
export {ROUTER_DIRECTIVES, RouterModule} from './src/router_module';
|
2016-06-21 10:35:42 -07: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 12:15:07 -07:00
|
|
|
export {DefaultUrlSerializer, UrlSegment, UrlSerializer, UrlTree} from './src/url_tree';
|