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
|
|
|
*/
|
2015-02-05 16:08:05 -05:00
|
|
|
export * from './src/core/annotations/visibility';
|
|
|
|
export * from './src/core/compiler/interfaces';
|
2015-04-09 15:20:11 -04:00
|
|
|
export * from './src/core/annotations/view';
|
2015-02-05 16:08:05 -05:00
|
|
|
export * from './src/core/application';
|
2015-03-30 10:37:33 -04:00
|
|
|
export * from './src/core/application_tokens';
|
2015-03-19 16:12:16 -04:00
|
|
|
export * from './src/core/annotations/di';
|
2015-02-02 19:25:34 -05:00
|
|
|
|
2015-02-05 16:08:05 -05:00
|
|
|
export * from './src/core/compiler/compiler';
|
2015-02-11 19:28:10 -05:00
|
|
|
|
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';
|
2015-04-06 16:19:30 -04:00
|
|
|
export * from './src/core/compiler/dynamic_component_loader';
|
2015-04-17 10:55:45 -04:00
|
|
|
export {ElementRef, ComponentRef} from './src/core/compiler/element_injector';
|
2015-02-05 16:08:05 -05:00
|
|
|
export * from './src/core/compiler/view';
|
2015-02-12 05:54:22 -05:00
|
|
|
export * from './src/core/compiler/view_container';
|
2015-02-02 19:25:34 -05:00
|
|
|
|
2015-04-07 23:54:20 -04:00
|
|
|
export * from './src/core/compiler/ng_element';
|
2015-04-02 17:40:49 -04:00
|
|
|
|