The `NgModuleDecoratorHandler` can now register all the references that it finds in the `NgModule` metadata, such as `declarations`, `imports`, `exports` etc. This information can then be used by ngcc to work out if any of these references are internal only and need to be manually exported from a library's entry-point. PR Close #26906
20 lines
784 B
TypeScript
20 lines
784 B
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
|
|
*/
|
|
|
|
/// <reference types="node" />
|
|
|
|
export {ResourceLoader} from './src/api';
|
|
export {BaseDefDecoratorHandler} from './src/base_def';
|
|
export {ComponentDecoratorHandler} from './src/component';
|
|
export {DirectiveDecoratorHandler} from './src/directive';
|
|
export {InjectableDecoratorHandler} from './src/injectable';
|
|
export {NgModuleDecoratorHandler} from './src/ng_module';
|
|
export {PipeDecoratorHandler} from './src/pipe';
|
|
export {NoopReferencesRegistry, ReferencesRegistry} from './src/references_registry';
|
|
export {CompilationScope, SelectorScopeRegistry} from './src/selector_scope';
|