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:
parent
95074ca303
commit
2a78d5e6fe
@ -10,8 +10,8 @@ import {Type} from '../type';
|
|||||||
import {PlatformReflectionCapabilities} from './platform_reflection_capabilities';
|
import {PlatformReflectionCapabilities} from './platform_reflection_capabilities';
|
||||||
import {GetterFn, MethodFn, SetterFn} from './types';
|
import {GetterFn, MethodFn, SetterFn} from './types';
|
||||||
|
|
||||||
export {PlatformReflectionCapabilities} from './platform_reflection_capabilities';
|
export {PlatformReflectionCapabilities};
|
||||||
export {GetterFn, MethodFn, SetterFn} from './types';
|
export {GetterFn, MethodFn, SetterFn};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides access to reflection data about symbols. Used internally by Angular
|
* Provides access to reflection data about symbols. Used internally by Angular
|
||||||
|
Loading…
x
Reference in New Issue
Block a user