From d964491f2a58b34c87fcd3bf5d1bd53885fc87e9 Mon Sep 17 00:00:00 2001 From: Patrick Shields Date: Thu, 25 Jan 2018 05:30:54 -0600 Subject: [PATCH] fix(router): remove @internal tag on ParamInheritanceType (#21773) This is a more defensive approach to ensure that references to ParamInheritanceType from the published declarations do not cause compilation errors when compiling Angular from the published packages. Fixes #21456 PR Close #21773 --- packages/router/src/router_state.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/router/src/router_state.ts b/packages/router/src/router_state.ts index a10c896fb4..5cab4dd2a0 100644 --- a/packages/router/src/router_state.ts +++ b/packages/router/src/router_state.ts @@ -175,7 +175,6 @@ export class ActivatedRoute { } } -/** @internal */ export type ParamsInheritanceStrategy = 'emptyOnly' | 'always'; /** @internal */