25 lines
		
	
	
		
			815 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			815 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * @module
 | 
						|
 * @public
 | 
						|
 * @description
 | 
						|
 * Define angular core API here.
 | 
						|
 */
 | 
						|
export * from './src/core/annotations/visibility';
 | 
						|
export * from './src/core/compiler/interfaces';
 | 
						|
export * from './src/core/annotations/view';
 | 
						|
export * from './src/core/application';
 | 
						|
export * from './src/core/application_tokens';
 | 
						|
export * from './src/core/annotations/di';
 | 
						|
 | 
						|
export * from './src/core/compiler/compiler';
 | 
						|
 | 
						|
// 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';
 | 
						|
 |