Files
angular-docs-cn/modules/@angular/core/src/linker.ts
T

20 lines
905 B
TypeScript
Raw Normal View History

/**
* @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
*/
// Public API for compiler
2016-06-08 16:38:52 -07:00
export {ComponentFactory, ComponentRef} from './linker/component_factory';
2016-04-13 17:05:17 -07:00
export {ComponentResolver} from './linker/component_resolver';
export {DynamicComponentLoader} from './linker/dynamic_component_loader';
export {ElementRef} from './linker/element_ref';
2016-06-08 16:38:52 -07:00
export {ExpressionChangedAfterItHasBeenCheckedException} from './linker/exceptions';
export {QueryList} from './linker/query_list';
export {SystemJsCmpFactoryResolver, SystemJsComponentResolver} from './linker/systemjs_component_resolver';
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';