2016-06-23 09:47:54 -07:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 12:08:49 -07:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-06-23 09:47:54 -07:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2015-09-03 22:01:36 -07:00
|
|
|
// Public API for compiler
|
2020-04-13 16:40:21 -07:00
|
|
|
export {Compiler, COMPILER_OPTIONS, CompilerFactory, CompilerOptions, ModuleWithComponentFactories} from './linker/compiler';
|
2016-06-08 16:38:52 -07:00
|
|
|
export {ComponentFactory, ComponentRef} from './linker/component_factory';
|
2016-08-25 00:50:16 -07:00
|
|
|
export {ComponentFactoryResolver} from './linker/component_factory_resolver';
|
2015-10-02 07:37:23 -07:00
|
|
|
export {ElementRef} from './linker/element_ref';
|
2016-07-18 03:50:31 -07:00
|
|
|
export {NgModuleFactory, NgModuleRef} from './linker/ng_module_factory';
|
2020-04-13 16:40:21 -07:00
|
|
|
export {getModuleFactory, NgModuleFactoryLoader} from './linker/ng_module_factory_loader';
|
2016-06-08 16:38:52 -07:00
|
|
|
export {QueryList} from './linker/query_list';
|
2016-08-24 16:54:42 -07:00
|
|
|
export {SystemJsNgModuleLoader, SystemJsNgModuleLoaderConfig} from './linker/system_js_ng_module_factory_loader';
|
2015-10-02 07:37:23 -07:00
|
|
|
export {TemplateRef} from './linker/template_ref';
|
|
|
|
export {ViewContainerRef} from './linker/view_container_ref';
|
2016-06-08 16:38:52 -07:00
|
|
|
export {EmbeddedViewRef, ViewRef} from './linker/view_ref';
|