From 45de65bd453ce184ff58d01a2bd4596d263b7aa2 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Wed, 8 Jun 2016 11:18:35 -0700 Subject: [PATCH] fix(router): don't mark the RouterOutletMap as internal it's currently being reexported as public api which breaks anyone tryin to import the router because the RouterOutletMap definition is missing --- modules/@angular/router/src/router.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/@angular/router/src/router.ts b/modules/@angular/router/src/router.ts index c5c0a83656..098fe682cb 100644 --- a/modules/@angular/router/src/router.ts +++ b/modules/@angular/router/src/router.ts @@ -23,9 +23,6 @@ import { import {hasLifecycleHook} from './lifecycle_reflector'; import {DEFAULT_OUTLET_NAME} from './constants'; -/** - * @internal - */ export class RouterOutletMap { /** @internal */ _outlets: {[name: string]: RouterOutlet} = {};