angular-cn/modules/angular2/core.js

25 lines
815 B
JavaScript
Raw Normal View History

2015-04-10 14:15:01 -04:00
/**
* @module
* @public
* @description
2015-04-15 18:35:38 -04:00
* Define angular core API here.
2015-04-10 14:15:01 -04:00
*/
export * from './src/core/annotations/visibility';
export * from './src/core/compiler/interfaces';
export * from './src/core/annotations/view';
export * from './src/core/application';
2015-03-30 10:37:33 -04:00
export * from './src/core/application_tokens';
export * from './src/core/annotations/di';
export * from './src/core/compiler/compiler';
2015-04-02 17:40:49 -04:00
// TODO(tbosch): remove this once render migration is complete
export * from 'angular2/src/render/dom/compiler/template_loader';
export * from './src/core/compiler/dynamic_component_loader';
export {ElementRef, ComponentRef} from './src/core/compiler/element_injector';
export * from './src/core/compiler/view';
export * from './src/core/compiler/view_container';
export * from './src/core/compiler/ng_element';
2015-04-02 17:40:49 -04:00