2015-04-24 13:17:36 -07:00
|
|
|
import {Reflector} from './reflector';
|
2015-07-23 15:18:30 -07:00
|
|
|
export {Reflector, ReflectionInfo} from './reflector';
|
2015-04-24 13:17:36 -07:00
|
|
|
import {ReflectionCapabilities} from './reflection_capabilities';
|
|
|
|
|
2015-12-03 15:49:09 -08:00
|
|
|
/**
|
|
|
|
* The {@link Reflector} used internally in Angular to access metadata
|
|
|
|
* about symbols.
|
|
|
|
*/
|
2015-04-24 13:17:36 -07:00
|
|
|
export var reflector = new Reflector(new ReflectionCapabilities());
|
2016-02-26 12:25:55 +01:00
|
|
|
|