
This commit moves the FlatIndexGenerator to its own package, in preparation to expand its capabilities and support re-exporting of private declarations from NgModules. PR Close #27743
14 lines
461 B
TypeScript
14 lines
461 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 {FactoryGenerator, FactoryInfo, generatedFactoryTransform} from './src/factory_generator';
|
|
export {GeneratedShimsHostWrapper, ShimGenerator} from './src/host';
|
|
export {SummaryGenerator} from './src/summary_generator';
|