refactor(core): simplify Reflector code, add types (#12099)

This commit is contained in:
Victor Berchet
2016-10-06 15:11:16 -07:00
committed by Tobias Bosch
parent c9b765f5c0
commit 0254ce1f6c
3 changed files with 61 additions and 87 deletions
@@ -16,4 +16,4 @@ export {ReflectionInfo, Reflector} from './reflector';
* The {@link Reflector} used internally in Angular to access metadata
* about symbols.
*/
export var reflector = new Reflector(new ReflectionCapabilities());
export const reflector = new Reflector(new ReflectionCapabilities());