57 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * @license
 | |
|  * Copyright Google Inc. All Rights Reserved.
 | |
|  *
 | |
|  * Use of this source code is governed by an MIT-style license that can be
 | |
|  * found in the LICENSE file at https://angular.io/license
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * @module
 | |
|  * @description
 | |
|  * Entry point for all APIs of the compiler package.
 | |
|  *
 | |
|  * <div class="callout is-critical">
 | |
|  *   <header>Unstable APIs</header>
 | |
|  *   <p>
 | |
|  *     All compiler apis are currently considered experimental and private!
 | |
|  *   </p>
 | |
|  *   <p>
 | |
|  *     We expect the APIs in this package to keep on changing. Do not rely on them.
 | |
|  *   </p>
 | |
|  * </div>
 | |
|  */
 | |
| export * from './src/template_parser/template_ast';
 | |
| export {TEMPLATE_TRANSFORMS} from './src/template_parser/template_parser';
 | |
| export {CompilerConfig, RenderTypes} from './src/config';
 | |
| export * from './src/compile_metadata';
 | |
| export * from './src/offline_compiler';
 | |
| export {RuntimeCompiler} from './src/runtime_compiler';
 | |
| export * from './src/url_resolver';
 | |
| export * from './src/resource_loader';
 | |
| export * from './src/compiler';
 | |
| export {DirectiveResolver} from './src/directive_resolver';
 | |
| export {PipeResolver} from './src/pipe_resolver';
 | |
| export {NgModuleResolver} from './src/ng_module_resolver';
 | |
| export {DEFAULT_INTERPOLATION_CONFIG, InterpolationConfig} from './src/ml_parser/interpolation_config';
 | |
| export * from './src/schema/element_schema_registry';
 | |
| export * from './src/i18n/index';
 | |
| export * from './src/directive_normalizer';
 | |
| export * from './src/expression_parser/lexer';
 | |
| export * from './src/expression_parser/parser';
 | |
| export * from './src/metadata_resolver';
 | |
| export * from './src/ml_parser/html_parser';
 | |
| export * from './src/ml_parser/interpolation_config';
 | |
| export {NgModuleCompiler} from './src/ng_module_compiler';
 | |
| export {DirectiveWrapperCompiler} from './src/directive_wrapper_compiler';
 | |
| export * from './src/output/path_util';
 | |
| export * from './src/output/ts_emitter';
 | |
| export * from './src/parse_util';
 | |
| export * from './src/schema/dom_element_schema_registry';
 | |
| export * from './src/selector';
 | |
| export * from './src/style_compiler';
 | |
| export * from './src/template_parser/template_parser';
 | |
| export {ViewCompiler} from './src/view_compiler/view_compiler';
 | |
| 
 | |
| // This file only reexports content of the `src` folder. Keep it that way.
 |