23 lines
816 B
TypeScript
Raw Normal View History

2015-04-10 11:15:01 -07:00
/**
* @module
* @public
* @description
2015-04-15 22:35:38 +00:00
* Define angular core API here.
2015-04-10 11:15:01 -07:00
*/
export * from './src/core/annotations/visibility';
export * from './src/core/annotations/view';
export * from './src/core/application';
2015-03-30 16:37:33 +02:00
export * from './src/core/application_tokens';
export * from './src/core/annotations/di';
export * from './src/core/compiler/compiler';
export * from './src/core/compiler/interfaces';
export * from './src/core/compiler/query_list';
export * from './src/core/compiler/directive_resolver';
export * from './src/core/compiler/dynamic_component_loader';
export {ViewRef, ProtoViewRef} from './src/core/compiler/view_ref';
export {ViewContainerRef} from './src/core/compiler/view_container_ref';
export {ElementRef} from './src/core/compiler/element_ref';
export {NgZone} from './src/core/zone/ng_zone';