2015-04-10 18:15:01 +00:00
|
|
|
/**
|
|
|
|
|
* @module
|
|
|
|
|
* @public
|
|
|
|
|
* @description
|
|
|
|
|
* Define public API for Angular here.
|
|
|
|
|
*/
|
2015-02-05 21:08:05 +00:00
|
|
|
export * from './src/core/annotations/visibility';
|
|
|
|
|
export * from './src/core/compiler/interfaces';
|
2015-04-09 19:20:11 +00:00
|
|
|
export * from './src/core/annotations/view';
|
2015-02-05 21:08:05 +00:00
|
|
|
export * from './src/core/application';
|
2015-03-30 14:37:33 +00:00
|
|
|
export * from './src/core/application_tokens';
|
2015-03-19 20:12:16 +00:00
|
|
|
export * from './src/core/annotations/di';
|
2015-02-03 00:25:34 +00:00
|
|
|
|
2015-02-05 21:08:05 +00:00
|
|
|
export * from './src/core/compiler/compiler';
|
2015-02-12 00:28:10 +00:00
|
|
|
|
2015-04-02 21:40:49 +00:00
|
|
|
// TODO(tbosch): remove this once render migration is complete
|
|
|
|
|
export * from 'angular2/src/render/dom/compiler/template_loader';
|
2015-04-06 20:19:30 +00:00
|
|
|
export * from './src/core/compiler/dynamic_component_loader';
|
|
|
|
|
export {ElementRef, DirectiveRef, ComponetRef} from './src/core/compiler/element_injector';
|
2015-02-05 21:08:05 +00:00
|
|
|
export * from './src/core/compiler/view';
|
2015-02-12 10:54:22 +00:00
|
|
|
export * from './src/core/compiler/view_container';
|
2015-02-03 00:25:34 +00:00
|
|
|
|
2015-04-08 03:54:20 +00:00
|
|
|
export * from './src/core/compiler/ng_element';
|
2015-04-02 21:40:49 +00:00
|
|
|
|