Copy a second package to TypeScript.

This commit is contained in:
Alex Eagle
2015-04-24 13:17:36 -07:00
parent b5e350b18c
commit 623edcd2d8
7 changed files with 176 additions and 4 deletions
@@ -0,0 +1,12 @@
import {Type, isPresent} from 'angular2/src/facade/lang';
import {List, ListWrapper} from 'angular2/src/facade/collection';
import {Reflector} from './reflector';
export {Reflector} from './reflector';
import {ReflectionCapabilities} from './reflection_capabilities';
// HACK: workaround for Traceur behavior.
// It expects all transpiled modules to contain this marker.
// TODO: remove this when we no longer use traceur
export var __esModule = true;
export var reflector = new Reflector(new ReflectionCapabilities());