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-08-16 16:40:28 -04:00
|
|
|
export {Data, LoadChildren, LoadChildrenCallback, ResolveData, Route, 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-08-25 11:48:31 -04:00
|
|
|
export {ErrorHandler, Event, NavigationCancel, NavigationEnd, NavigationError, NavigationExtras, NavigationStart, Router, RoutesRecognized} from './src/router';
|
2016-08-26 12:33:37 -04:00
|
|
|
export {ExtraOptions, RouterModule, provideRoutes} from './src/router_module';
|
2016-06-21 13:35:42 -04:00
|
|
|
export {RouterOutletMap} from './src/router_outlet_map';
|
|
|
|
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';
|