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