refactor(core): clean up dupe'd imports in reflector (#24203)

Closure Compiler in some configurations complains about duplicate
imports. This change replaces the export-with-import with an export of
the imported symbol.

closes #23993

PR Close #24203
This commit is contained in:
Martin Probst 2018-05-18 12:50:52 +02:00 committed by Victor Berchet
parent 95074ca303
commit 2a78d5e6fe
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ import {Type} from '../type';
import {PlatformReflectionCapabilities} from './platform_reflection_capabilities';
import {GetterFn, MethodFn, SetterFn} from './types';
export {PlatformReflectionCapabilities} from './platform_reflection_capabilities';
export {GetterFn, MethodFn, SetterFn} from './types';
export {PlatformReflectionCapabilities};
export {GetterFn, MethodFn, SetterFn};
/**
* Provides access to reflection data about symbols. Used internally by Angular